diff options
author | Marcin Puc <marcin.e.puc@gmail.com> | 2021-03-07 21:46:39 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2021-03-08 22:22:28 +0000 |
commit | ac0ebdef9e13e199d26df1ceb18daaec82002929 (patch) | |
tree | b27a067379f05588ab0e4f5171a7c656da112388 /src | |
parent | e5797a892d191ba3c04cb6b20cc63fa6d1c2d278 (diff) | |
download | gleam_stdlib-ac0ebdef9e13e199d26df1ceb18daaec82002929.tar.gz gleam_stdlib-ac0ebdef9e13e199d26df1ceb18daaec82002929.zip |
Adjust list.take_while test example
Diffstat (limited to 'src')
-rw-r--r-- | src/gleam/list.gleam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gleam/list.gleam b/src/gleam/list.gleam index e49334b..680b0b0 100644 --- a/src/gleam/list.gleam +++ b/src/gleam/list.gleam @@ -1260,7 +1260,7 @@ fn do_take_while( /// /// ## Examples /// -/// > take_while([1, 2, 3, 4], fun (x) { x < 3 }) +/// > take_while([1, 2, 3, 2, 4], fun (x) { x < 3 }) /// [1, 2] /// pub fn take_while( |