From e90042b95eb5dd9f7af62be1b54a899db8db4a8e Mon Sep 17 00:00:00 2001 From: Dave Gauer Date: Sun, 29 Aug 2021 08:37:56 -0400 Subject: [PATCH] Update 037_structs.zig --- exercises/037_structs.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/037_structs.zig b/exercises/037_structs.zig index 7571c05..32f7b41 100644 --- a/exercises/037_structs.zig +++ b/exercises/037_structs.zig @@ -14,7 +14,7 @@ // point2 = Point{ .x=7, .y=13, .z=34 }; // // The Point above is an example of a "struct" (short for "structure"). -// Here's how it could have been defined: +// Here's how that struct type could have been defined: // // const Point = struct{ x: u32, y: u32, z: u32 }; //