Browse Source

Update 037_structs.zig

Dave Gauer 4 years ago
parent
commit
e90042b95e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      exercises/037_structs.zig

+ 1 - 1
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 };
 //