diff options
author | Dave Gauer <ratfactor@gmail.com> | 2021-02-27 15:59:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-27 15:59:34 -0500 |
commit | 96a5872c499c324f4855aec262c433fdbd60a4a2 (patch) | |
tree | 3fd1678147077ff7cc2ac07e3e8cdcc28c5338cc /exercises/36_enums2.zig | |
parent | 352a07fa7e421e6176a9713011c72e152e80a4db (diff) | |
parent | ef5778cf191311b80515f97ff255e0e4c689e910 (diff) | |
download | ziglings-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/36_enums2.zig')
-rw-r--r-- | exercises/36_enums2.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/36_enums2.zig b/exercises/36_enums2.zig index 650abef..0ddc4a5 100644 --- a/exercises/36_enums2.zig +++ b/exercises/36_enums2.zig @@ -33,7 +33,7 @@ const Color = enum(u32) { }; pub fn main() void { - // Remeber Zig's multi-line strings? Here they are again. + // Remember Zig's multi-line strings? Here they are again. // Also, check out this cool format string: // // {x:0>6} |