diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gleam/bit_string.gleam | 3 | ||||
-rw-r--r-- | src/gleam/uri.gleam | 2 |
2 files changed, 3 insertions, 2 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. /// diff --git a/src/gleam/uri.gleam b/src/gleam/uri.gleam index d3cf2e6..58ffeba 100644 --- a/src/gleam/uri.gleam +++ b/src/gleam/uri.gleam @@ -9,7 +9,7 @@ import gleam/list import gleam/result -import gleam/option.{Option, Some, None} +import gleam/option.{None, Option, Some} import gleam/string import gleam/dynamic.{Dynamic} import gleam/map.{Map} |