aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Gauer <[email protected]>2021-04-17 18:15:30 -0400
committerDave Gauer <[email protected]>2021-04-17 18:15:30 -0400
commit77a8a123f71b7d94ffabb001f3a7d3a2b4190660 (patch)
tree4cc21ecd7736f773632d8b3a34816774da073864
parent7d707d64b1fabb5f1118b9f4a2523532dfd71f6c (diff)
downloadziglings-77a8a123f71b7d94ffabb001f3a7d3a2b4190660.tar.xz
ziglings-77a8a123f71b7d94ffabb001f3a7d3a2b4190660.zip
055 typo
-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,