diff options
| author | Calvin Bochulak <calvin.bochulak@gmail.com> | 2024-07-03 23:20:59 -0600 |
|---|---|---|
| committer | Calvin Bochulak <calvin.bochulak@gmail.com> | 2024-07-03 23:20:59 -0600 |
| commit | c1d5252b87e12c468832b99a4db7332c8cd55ed0 (patch) | |
| tree | fbec15a79b5517cfb1db18e8a77d362f529d65ce /exercises/18_iterators/iterators3.rs | |
| parent | 0f71e122357f3f214c1d9db71f1d84c9f92adc5f (diff) | |
fix: typo s/unwarp/unwrap/
Diffstat (limited to 'exercises/18_iterators/iterators3.rs')
| -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] |
