From 9fe3bb766508805fce288920dbfecb98ca14e29f Mon Sep 17 00:00:00 2001 From: Dave Gauer Date: Sun, 29 Aug 2021 08:37:56 -0400 Subject: Update 037_structs.zig --- exercises/037_structs.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'exercises/037_structs.zig') 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 }; // -- cgit v1.2.3-ZIG