diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gleam/binary.gleam | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gleam/binary.gleam b/src/gleam/binary.gleam index 7ce8c3e..c83b5e1 100644 --- a/src/gleam/binary.gleam +++ b/src/gleam/binary.gleam @@ -18,7 +18,8 @@ pub external fn byte_size(Binary) -> Int = /// > append(to: "butter", suffix: "fly") /// "butterfly" /// -pub external fn append(first: Binary, second: Binary) -> Binary = "binary_native" "append" +pub external fn append(first: Binary, second: Binary) -> Binary = + "binary_native" "append" /// Extracts part of a binary. /// |