diff options
author | Bill Nunney <bill@bigtallbill.com> | 2024-06-11 06:54:25 -0400 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-06-11 16:19:07 +0100 |
commit | dd5b4103303786785bff85700bda368e362122fb (patch) | |
tree | 3f623b5880e21887b1a9799bcd9e61da8de3e65e /src | |
parent | 3ef0a879bff7e0f20407bd0279b88d7bec0a4cad (diff) | |
download | gleam_stdlib-dd5b4103303786785bff85700bda368e362122fb.tar.gz gleam_stdlib-dd5b4103303786785bff85700bda368e362122fb.zip |
Fix word in list module description
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 83870b4..62cb1fc 100644 --- a/src/gleam/list.gleam +++ b/src/gleam/list.gleam @@ -3,7 +3,7 @@ //// //// New elements can be added and removed from the front of a list in //// constant time, while adding and removing from the end requires traversing -//// the copying the whole list, so keep this in mind when designing your +//// and copying the whole list, so keep this in mind when designing your //// programs. //// //// There is a dedicated syntax for prefixing to a list: |