diff options
author | Dave Gauer <ratfactor@gmail.com> | 2021-02-15 19:32:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-15 19:32:00 -0500 |
commit | 09fd739efa9cee151c8300f53c422d8a72766d49 (patch) | |
tree | 45f2eba30d72f43df60cd9b053ebaea5dfe11f18 /exercises/09_if.zig | |
parent | 0d212ecf5a9de1c0bb673a2b6a409de5a99a9d7b (diff) | |
parent | 304489ca1f465b5456fa8c21dd0ae4e4c6c48617 (diff) | |
download | ziglings-09fd739efa9cee151c8300f53c422d8a72766d49.tar.gz ziglings-09fd739efa9cee151c8300f53c422d8a72766d49.tar.bz2 ziglings-09fd739efa9cee151c8300f53c422d8a72766d49.tar.xz ziglings-09fd739efa9cee151c8300f53c422d8a72766d49.zip |
Merge pull request #22 from quexxon/apply-zig-fmt
Apply `zig fmt` to exercises and generate remaining patch files
Diffstat (limited to 'exercises/09_if.zig')
-rw-r--r-- | exercises/09_if.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/09_if.zig b/exercises/09_if.zig index a472e48..284563d 100644 --- a/exercises/09_if.zig +++ b/exercises/09_if.zig @@ -11,7 +11,7 @@ // // a == b means "a equals b" // a < b means "a is less than b" -// a !=b means "a does not equal b" +// a != b means "a does not equal b" // // The important thing about Zig's "if" is that it *only* accepts // boolean values. It won't coerce numbers or other types of data |