aboutsummaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-04-17 18:15:30 -0400
committerDave Gauer <dave@ratfactor.com>2021-04-17 18:15:30 -0400
commitd9ed5336ccab9bcc6e52800bba7bf16c818bb20d (patch)
tree4cc21ecd7736f773632d8b3a34816774da073864 /exercises
parentb347a072769d6d20d5d901b023e4c57e6d0eb90c (diff)
downloadziglings-d9ed5336ccab9bcc6e52800bba7bf16c818bb20d.tar.gz
ziglings-d9ed5336ccab9bcc6e52800bba7bf16c818bb20d.tar.bz2
ziglings-d9ed5336ccab9bcc6e52800bba7bf16c818bb20d.tar.xz
ziglings-d9ed5336ccab9bcc6e52800bba7bf16c818bb20d.zip
055 typo
Diffstat (limited to 'exercises')
-rw-r--r--exercises/055_unions.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/055_unions.zig b/exercises/055_unions.zig
index 5e08aa1..6339fc8 100644
--- a/exercises/055_unions.zig
+++ b/exercises/055_unions.zig
@@ -5,7 +5,7 @@
// to store.
//
// In this example, an instance of Foo always takes up u64 of
-// space memory even if you're currently storing a u8.
+// space in memory even if you're currently storing a u8.
//
// const Foo = union {
// small: u8,