From ac0ebdef9e13e199d26df1ceb18daaec82002929 Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Sun, 7 Mar 2021 21:46:39 +0100 Subject: Adjust list.take_while test example --- src/gleam/list.gleam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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( -- cgit v1.2.3