aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/037_structs.zig
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/037_structs.zig')
-rw-r--r--exercises/037_structs.zig2
1 files changed, 1 insertions, 1 deletions
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 };
//