aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis Pilfold <louis@lpil.uk>2024-05-29 11:10:00 +0100
committerLouis Pilfold <louis@lpil.uk>2024-05-29 11:10:00 +0100
commit6906edef11a2c034e5b1715933ec852609b1654e (patch)
tree4c1dbe2f28fc02d6278b2871d7588197f9fd5235
parenta49c9cb13f65baa910ba4d1202ff59e03e4e4c9e (diff)
downloadtour-6906edef11a2c034e5b1715933ec852609b1654e.tar.gz
tour-6906edef11a2c034e5b1715933ec852609b1654e.zip
Tweak
-rw-r--r--src/content/chapter3_data_types/lesson08_bit_arrays/code.gleam2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content/chapter3_data_types/lesson08_bit_arrays/code.gleam b/src/content/chapter3_data_types/lesson08_bit_arrays/code.gleam
index 612edfa..52d7b8c 100644
--- a/src/content/chapter3_data_types/lesson08_bit_arrays/code.gleam
+++ b/src/content/chapter3_data_types/lesson08_bit_arrays/code.gleam
@@ -11,7 +11,7 @@ pub fn main() {
// A bit array of UTF8 data
io.debug(<<"Hello, Joe!":utf8>>)
- // BitArray concatenation
+ // Concatenation
let first = <<4>>
let second = <<2>>
io.debug(<<first:bits, second:bits>>)