diff options
| author | Dave Gauer <[email protected]> | 2021-08-29 08:37:56 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-08-29 08:37:56 -0400 |
| commit | e90042b95eb5dd9f7af62be1b54a899db8db4a8e (patch) | |
| tree | a794fc935543e6150ecc41014a0a1913a692e684 | |
| parent | 1b2b90317cbddba417c65aa9d0076e55367b0876 (diff) | |
| download | ziglings-e90042b95eb5dd9f7af62be1b54a899db8db4a8e.tar.xz ziglings-e90042b95eb5dd9f7af62be1b54a899db8db4a8e.zip | |
Update 037_structs.zig
| -rw-r--r-- | exercises/037_structs.zig | 2 |
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 }; // |
