diff options
author | Dusty Phillips <86920+dusty-phillips@users.noreply.github.com> | 2024-08-25 11:40:07 -0300 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-08-26 21:21:54 +0100 |
commit | 159b1ffe1624c2507c530f22dda2f883d36edb7d (patch) | |
tree | 8a05f3681f97afe484f912cb387b94587f518291 | |
parent | 81fc80067c29e5e49c5ea0f71219a6f5cc5f9cc2 (diff) | |
download | gleam_stdlib-159b1ffe1624c2507c530f22dda2f883d36edb7d.tar.gz gleam_stdlib-159b1ffe1624c2507c530f22dda2f883d36edb7d.zip |
Update BytesBuilder docstring to reflect binary content, net text
-rw-r--r-- | src/gleam/bytes_builder.gleam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gleam/bytes_builder.gleam b/src/gleam/bytes_builder.gleam index 290a584..fbed16b 100644 --- a/src/gleam/bytes_builder.gleam +++ b/src/gleam/bytes_builder.gleam @@ -1,4 +1,4 @@ -//// `BytesBuilder` is a type used for efficiently building text content to be +//// `BytesBuilder` is a type used for efficiently building binary content to be //// written to a file or a socket. Internally it is represented as tree so to //// append or prepend to a bytes builder is a constant time operation that //// allocates a new node in the tree without copying any of the content. When |