diff options
author | inoas <mail@inoas.com> | 2022-11-12 22:02:20 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2022-11-14 11:00:16 +0000 |
commit | e4e095657eed7cc8442691a54e169589a3f284bc (patch) | |
tree | 72cea1804d8354a3f62d2b1dc197b9fbd1ae898c /src | |
parent | 68ebcbf3343a49fe27c9ef906dabd87bb004a088 (diff) | |
download | gleam_stdlib-e4e095657eed7cc8442691a54e169589a3f284bc.tar.gz gleam_stdlib-e4e095657eed7cc8442691a54e169589a3f284bc.zip |
no double empty lines in docblocks
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. |