From 77a8a123f71b7d94ffabb001f3a7d3a2b4190660 Mon Sep 17 00:00:00 2001 From: Dave Gauer Date: Sat, 17 Apr 2021 18:15:30 -0400 Subject: [PATCH] 055 typo --- exercises/055_unions.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,