diff options
author | Richard Viney <richard.viney@gmail.com> | 2024-11-29 01:17:24 +1300 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-11-28 12:20:57 +0000 |
commit | 8adb4a324ae135fad617da0ea3f70bd9082596c4 (patch) | |
tree | adeeef7867f4b380f12df7413da946b80f85159b | |
parent | 406eb387d750191546d9da6f54df50b4b1ee8409 (diff) | |
download | gleam_stdlib-8adb4a324ae135fad617da0ea3f70bd9082596c4.tar.gz gleam_stdlib-8adb4a324ae135fad617da0ea3f70bd9082596c4.zip |
Fix typo
-rw-r--r-- | test/gleam/bit_array_test.gleam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/gleam/bit_array_test.gleam b/test/gleam/bit_array_test.gleam index 493e696..30e8c17 100644 --- a/test/gleam/bit_array_test.gleam +++ b/test/gleam/bit_array_test.gleam @@ -191,7 +191,7 @@ pub fn slice_test() { // This test is target specific since it's using non byte-aligned BitArrays // and those are not supported on the JavaScript target. @target(erlang) -pub fn slice_erlang_onyl_test() { +pub fn slice_erlang_only_test() { <<0, 1, 2:7>> |> bit_array.slice(0, 3) |> should.equal(Error(Nil)) |