diff options
Diffstat (limited to 'src/gleam/bit_string.gleam')
-rw-r--r-- | src/gleam/bit_string.gleam | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gleam/bit_string.gleam b/src/gleam/bit_string.gleam index 448a7cb..a30b40d 100644 --- a/src/gleam/bit_string.gleam +++ b/src/gleam/bit_string.gleam @@ -1,8 +1,8 @@ //// Working with raw bit string data. -//// The BitString type should be used instead of a String type when not utf8 +//// The `BitString` type should be used instead of a String type when not utf8 //// encoded. -/// Converts a UTF-8 String type into a raw BitString type. +/// Converts a UTF-8 `String` type into a raw `BitString` type. /// pub fn from_string(x: String) -> BitString { do_from_string(x) |