aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Thompson <andrew.thompson@qmul.ac.uk>2022-02-22 17:51:25 +0000
committerLouis Pilfold <louis@lpil.uk>2022-02-22 18:06:21 +0000
commit47f42b705211f7867d6aab697be6375f2ac38aa3 (patch)
tree02de11e9d8690be371cbbc7e7e1a8f15405b56b6
parent7288ed1415216c2e5060b92ffd667c15ca94c108 (diff)
downloadgleam_stdlib-47f42b705211f7867d6aab697be6375f2ac38aa3.tar.gz
gleam_stdlib-47f42b705211f7867d6aab697be6375f2ac38aa3.zip
:art: Run gleam-format so I don't get told off.
-rw-r--r--src/gleam/bit_builder.gleam2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gleam/bit_builder.gleam b/src/gleam/bit_builder.gleam
index 14c197e..49892e8 100644
--- a/src/gleam/bit_builder.gleam
+++ b/src/gleam/bit_builder.gleam
@@ -31,7 +31,7 @@ if javascript {
/// Create an empty `BitBuilder`. Useful as the start of a pipe chaning many
/// builders together.
///
-pub fn new () -> BitBuilder {
+pub fn new() -> BitBuilder {
do_concat([])
}