diff options
author | Vladislav Botvin <darkvlados@gmail.com> | 2024-04-10 00:50:12 +0300 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-04-10 10:54:53 +0100 |
commit | f56e7798b3c6be080a5a6e9c77d0b6d4396fbade (patch) | |
tree | 458312a60adc635ef13b16a72396859f1503d712 /src | |
parent | 11ff0aa8e0b5b37d1a4cc4ed0b074495b5e51d5f (diff) | |
download | gleam_stdlib-f56e7798b3c6be080a5a6e9c77d0b6d4396fbade.tar.gz gleam_stdlib-f56e7798b3c6be080a5a6e9c77d0b6d4396fbade.zip |
typo fix
Diffstat (limited to 'src')
-rw-r--r-- | src/gleam/iterator.gleam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gleam/iterator.gleam b/src/gleam/iterator.gleam index c51e336..2aadeaa 100644 --- a/src/gleam/iterator.gleam +++ b/src/gleam/iterator.gleam @@ -395,7 +395,7 @@ fn do_map2( } } -/// Combines two interators into a single one using the given function. +/// Combines two iterators into a single one using the given function. /// /// If an iterator is longer than the other the extra elements are dropped. /// |