aboutsummaryrefslogtreecommitdiff
path: root/src/gleam/bit_string.gleam
diff options
context:
space:
mode:
authorMarcin Puc <marcin.e.puc@gmail.com>2021-12-07 17:46:18 +0100
committerLouis Pilfold <louis@lpil.uk>2021-12-08 10:24:11 +0000
commitaf92f35133322b0ae4dc2a1e2d1318b850eab7e0 (patch)
tree054e25afba81f9a70df7761a0242ca032467b7e0 /src/gleam/bit_string.gleam
parent9fd5575d2525bfecc509e6378af704a8e822b710 (diff)
downloadgleam_stdlib-af92f35133322b0ae4dc2a1e2d1318b850eab7e0.tar.gz
gleam_stdlib-af92f35133322b0ae4dc2a1e2d1318b850eab7e0.zip
Improve documentation
Diffstat (limited to 'src/gleam/bit_string.gleam')
-rw-r--r--src/gleam/bit_string.gleam4
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)