diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-04-17 18:15:30 -0400 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-04-17 18:15:30 -0400 |
commit | d9ed5336ccab9bcc6e52800bba7bf16c818bb20d (patch) | |
tree | 4cc21ecd7736f773632d8b3a34816774da073864 | |
parent | b347a072769d6d20d5d901b023e4c57e6d0eb90c (diff) | |
download | ziglings-d9ed5336ccab9bcc6e52800bba7bf16c818bb20d.tar.gz ziglings-d9ed5336ccab9bcc6e52800bba7bf16c818bb20d.tar.bz2 ziglings-d9ed5336ccab9bcc6e52800bba7bf16c818bb20d.tar.xz ziglings-d9ed5336ccab9bcc6e52800bba7bf16c818bb20d.zip |
055 typo
-rw-r--r-- | exercises/055_unions.zig | 2 |
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, |