diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gleam/iterator.gleam | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gleam/iterator.gleam b/src/gleam/iterator.gleam index d6a6632..d5ca131 100644 --- a/src/gleam/iterator.gleam +++ b/src/gleam/iterator.gleam @@ -1129,7 +1129,6 @@ fn do_fold_until( /// If called on an iterator of infinite length then this function will only ever /// return if the function returns `list.Stop`. /// -/// /// ## Examples /// /// ```gleam @@ -1171,7 +1170,6 @@ fn do_try_fold( /// A variant of fold that might fail. /// -/// /// The folding function should return `Result(accumulator, error)`. /// If the returned value is `Ok(accumulator)` try_fold will try the next value in the iterator. /// If the returned value is `Error(error)` try_fold will stop and return that error. |