diff options
author | Louis Pilfold <louis@lpil.uk> | 2021-08-08 21:36:05 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2021-08-08 21:36:05 +0100 |
commit | c5a001977a3b76f257a3a7ea4605f6ff61f1a590 (patch) | |
tree | 97ae0e59d4d8744d91965eeba517b9e399e37fbc | |
parent | f62897a4877524a9515e6f703794d50db89c3f99 (diff) | |
download | gleam_stdlib-c5a001977a3b76f257a3a7ea4605f6ff61f1a590.tar.gz gleam_stdlib-c5a001977a3b76f257a3a7ea4605f6ff61f1a590.zip |
Missing comment
-rw-r--r-- | src/gleam/bit_builder.gleam | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gleam/bit_builder.gleam b/src/gleam/bit_builder.gleam index c72b04f..493addd 100644 --- a/src/gleam/bit_builder.gleam +++ b/src/gleam/bit_builder.gleam @@ -33,6 +33,8 @@ if javascript { /// time using minimal memory, and then can be efficiently converted to a /// bit string using the `to_bit_string` function. /// + /// On Erlang this type is compatible with Erlang's iolists. + /// pub opaque type BitBuilder { Bits(BitString) Text(StringBuilder) |