diff options
author | Adi Salimgereev <adisalimgereev@gmail.com> | 2023-09-25 22:18:27 +0600 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2023-09-27 12:06:34 +0100 |
commit | ee3045b052a99c6a753d8ddc8b583a643de007e2 (patch) | |
tree | 3c3a2b63e7b3f82bafebe05cfafa7f253c96f8b8 /src | |
parent | e20352a201499b0e2c662b581ba471daf0698563 (diff) | |
download | gleam_stdlib-ee3045b052a99c6a753d8ddc8b583a643de007e2.tar.gz gleam_stdlib-ee3045b052a99c6a753d8ddc8b583a643de007e2.zip |
Fix typos
Diffstat (limited to 'src')
-rw-r--r-- | src/gleam/bit_builder.gleam | 2 | ||||
-rw-r--r-- | src/gleam/list.gleam | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/gleam/bit_builder.gleam b/src/gleam/bit_builder.gleam index 03f0bff..b880334 100644 --- a/src/gleam/bit_builder.gleam +++ b/src/gleam/bit_builder.gleam @@ -28,7 +28,7 @@ pub opaque type BitBuilder { Many(List(BitBuilder)) } -/// Create an empty `BitBuilder`. Useful as the start of a pipe chaning many +/// Create an empty `BitBuilder`. Useful as the start of a pipe chaining many /// builders together. /// pub fn new() -> BitBuilder { diff --git a/src/gleam/list.gleam b/src/gleam/list.gleam index 4836f92..6be2f61 100644 --- a/src/gleam/list.gleam +++ b/src/gleam/list.gleam @@ -2102,7 +2102,7 @@ fn do_shuffle_by_pair_indexes( /// Takes a list, randomly sorts all items and returns the shuffled list. /// /// This function uses Erlang's `:rand` module or Javascript's -/// `Math.random()` to calcuate the index shuffling. +/// `Math.random()` to calculate the index shuffling. /// /// ## Example /// |