diff options
author | inoas <mail@inoas.com> | 2022-08-10 11:12:51 +0200 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2022-08-11 09:56:08 +0100 |
commit | 56f4e3da17943ebce4cf92eaddd9c0d7c476420a (patch) | |
tree | 3a8a2f69736ee8a41964711e12854e884ece2e03 /test | |
parent | ebf4c3a9843509f5dc3ba1b678e9a103d97c31af (diff) | |
download | gleam_stdlib-56f4e3da17943ebce4cf92eaddd9c0d7c476420a.tar.gz gleam_stdlib-56f4e3da17943ebce4cf92eaddd9c0d7c476420a.zip |
2 dots instead of 3
Diffstat (limited to 'test')
-rw-r--r-- | test/gleam/string_test.gleam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/gleam/string_test.gleam b/test/gleam/string_test.gleam index acc00d7..8dff65e 100644 --- a/test/gleam/string_test.gleam +++ b/test/gleam/string_test.gleam @@ -795,7 +795,7 @@ if erlang { pub fn improper_list_inspect_test() { let list = improper_list_append(1, 2) - assert "[1, ...2]" = string.inspect(list) + assert "[1, ..2]" = string.inspect(list) } // Warning: The type of this function is incorrect |