diff options
author | Louis Pilfold <louis@lpil.uk> | 2024-08-27 11:43:06 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-08-27 11:43:06 +0100 |
commit | a349b6273717d42c232079b0bfcf5002d10e10d3 (patch) | |
tree | 4b4b43ccfab7eb225d6160d34076540ff997e3d7 /src | |
parent | 159b1ffe1624c2507c530f22dda2f883d36edb7d (diff) | |
download | gleam_stdlib-a349b6273717d42c232079b0bfcf5002d10e10d3.tar.gz gleam_stdlib-a349b6273717d42c232079b0bfcf5002d10e10d3.zip |
Fix documentation
Closes https://github.com/gleam-lang/stdlib/issues/686
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 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 /// |