aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gleam/list.gleam2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gleam/list.gleam b/src/gleam/list.gleam
index 530a27f..32cb38b 100644
--- a/src/gleam/list.gleam
+++ b/src/gleam/list.gleam
@@ -582,7 +582,7 @@ fn do_take(list: List(a), n: Int, acc: List(a)) -> List(a) {
/// If the element has less than the number of elements then the full list is
/// returned.
///
-/// This function runs in linear time but does not copy the list.
+/// This function runs in linear time.
///
/// ## Examples
///