diff options
| author | Mo <76752051+mo8it@users.noreply.github.com> | 2024-07-04 09:00:31 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-04 09:00:31 +0200 |
| commit | b4f4c79ac4c9214b77061b7cb969656612c7383f (patch) | |
| tree | fbec15a79b5517cfb1db18e8a77d362f529d65ce | |
| parent | 0f71e122357f3f214c1d9db71f1d84c9f92adc5f (diff) | |
| parent | c1d5252b87e12c468832b99a4db7332c8cd55ed0 (diff) | |
Merge pull request #2012 from cbochs/main
fix: typo s/unwarp/unwrap/
| -rw-r--r-- | exercises/18_iterators/iterators3.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/18_iterators/iterators3.rs b/exercises/18_iterators/iterators3.rs index b5d05f6..65a0573 100644 --- a/exercises/18_iterators/iterators3.rs +++ b/exercises/18_iterators/iterators3.rs @@ -54,7 +54,7 @@ mod tests { #[test] fn test_result_with_list() { - assert_eq!(result_with_list().unwarp(), [1, 11, 1426, 3]); + assert_eq!(result_with_list().unwrap(), [1, 11, 1426, 3]); } #[test] |
