aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorinoas <mail@inoas.com>2022-11-12 22:02:20 +0100
committerLouis Pilfold <louis@lpil.uk>2022-11-14 11:00:16 +0000
commite4e095657eed7cc8442691a54e169589a3f284bc (patch)
tree72cea1804d8354a3f62d2b1dc197b9fbd1ae898c
parent68ebcbf3343a49fe27c9ef906dabd87bb004a088 (diff)
downloadgleam_stdlib-e4e095657eed7cc8442691a54e169589a3f284bc.tar.gz
gleam_stdlib-e4e095657eed7cc8442691a54e169589a3f284bc.zip
no double empty lines in docblocks
-rw-r--r--src/gleam/iterator.gleam2
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.