aboutsummaryrefslogtreecommitdiff
path: root/src/gleam/bit_string.gleam
diff options
context:
space:
mode:
Diffstat (limited to 'src/gleam/bit_string.gleam')
-rw-r--r--src/gleam/bit_string.gleam3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gleam/bit_string.gleam b/src/gleam/bit_string.gleam
index 99d91b1..0bcdc66 100644
--- a/src/gleam/bit_string.gleam
+++ b/src/gleam/bit_string.gleam
@@ -2,7 +2,8 @@
//// The BitString type should be used instead of a String type when not utf8
//// encoded.
-pub type BitString = BitString
+pub type BitString =
+ BitString
/// Convert a utf8 String type into a raw BitString type.
///