Update 037_structs.zig

This commit is contained in:
Dave Gauer 2021-08-29 08:37:56 -04:00 committed by GitHub
parent 32ff7cf42a
commit 9fe3bb7665
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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 };
//