aboutsummaryrefslogtreecommitdiff
path: root/exercises/37_structs.zig
diff options
context:
space:
mode:
authorDave Gauer <ratfactor@gmail.com>2021-02-27 15:59:34 -0500
committerGitHub <noreply@github.com>2021-02-27 15:59:34 -0500
commit96a5872c499c324f4855aec262c433fdbd60a4a2 (patch)
tree3fd1678147077ff7cc2ac07e3e8cdcc28c5338cc /exercises/37_structs.zig
parent352a07fa7e421e6176a9713011c72e152e80a4db (diff)
parentef5778cf191311b80515f97ff255e0e4c689e910 (diff)
downloadziglings-96a5872c499c324f4855aec262c433fdbd60a4a2.tar.gz
ziglings-96a5872c499c324f4855aec262c433fdbd60a4a2.tar.bz2
ziglings-96a5872c499c324f4855aec262c433fdbd60a4a2.tar.xz
ziglings-96a5872c499c324f4855aec262c433fdbd60a4a2.zip
Merge pull request #27 from vishalsodani/main
Fixed some typos
Diffstat (limited to 'exercises/37_structs.zig')
-rw-r--r--exercises/37_structs.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/37_structs.zig b/exercises/37_structs.zig
index 37989c0..8082248 100644
--- a/exercises/37_structs.zig
+++ b/exercises/37_structs.zig
@@ -10,8 +10,8 @@
//
// into this:
//
-// point1 = Point{ .x=3, .y=16, .y=27 };
-// point2 = Point{ .x=7, .y=13, .y=34 };
+// point1 = Point{ .x=3, .y=16, .z=27 };
+// 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: