aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gleam/bit_builder.gleam2
-rw-r--r--src/gleam/list.gleam2
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
///