diff options
author | Dave Gauer <ratfactor@gmail.com> | 2021-08-29 08:37:56 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-29 08:37:56 -0400 |
commit | 9fe3bb766508805fce288920dbfecb98ca14e29f (patch) | |
tree | a794fc935543e6150ecc41014a0a1913a692e684 /exercises/037_structs.zig | |
parent | 32ff7cf42a7fea8da525f1d00d89dce9d44c95b7 (diff) | |
download | ziglings-9fe3bb766508805fce288920dbfecb98ca14e29f.tar.gz ziglings-9fe3bb766508805fce288920dbfecb98ca14e29f.tar.bz2 ziglings-9fe3bb766508805fce288920dbfecb98ca14e29f.tar.xz ziglings-9fe3bb766508805fce288920dbfecb98ca14e29f.zip |
Update 037_structs.zig
Diffstat (limited to 'exercises/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 }; // |