aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Gauer <[email protected]>2021-08-29 08:37:56 -0400
committerGitHub <[email protected]>2021-08-29 08:37:56 -0400
commite90042b95eb5dd9f7af62be1b54a899db8db4a8e (patch)
treea794fc935543e6150ecc41014a0a1913a692e684
parent1b2b90317cbddba417c65aa9d0076e55367b0876 (diff)
downloadziglings-e90042b95eb5dd9f7af62be1b54a899db8db4a8e.tar.xz
ziglings-e90042b95eb5dd9f7af62be1b54a899db8db4a8e.zip
Update 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 };
//