aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVladislav Botvin <darkvlados@gmail.com>2024-04-10 00:50:12 +0300
committerLouis Pilfold <louis@lpil.uk>2024-04-10 10:54:53 +0100
commitf56e7798b3c6be080a5a6e9c77d0b6d4396fbade (patch)
tree458312a60adc635ef13b16a72396859f1503d712 /src
parent11ff0aa8e0b5b37d1a4cc4ed0b074495b5e51d5f (diff)
downloadgleam_stdlib-f56e7798b3c6be080a5a6e9c77d0b6d4396fbade.tar.gz
gleam_stdlib-f56e7798b3c6be080a5a6e9c77d0b6d4396fbade.zip
typo fix
Diffstat (limited to 'src')
-rw-r--r--src/gleam/iterator.gleam2
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.
///