aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/09_if.zig
diff options
context:
space:
mode:
authorWill Clardy <will@quexxon.net>2021-02-15 16:55:19 -0500
committerWill Clardy <will@quexxon.net>2021-02-15 16:55:19 -0500
commit97ae27435b3782ddbde69fccc5f40caee5dda2cd (patch)
tree3e2029227daedbd4ad409cc78b1aaefe52683833 /exercises/09_if.zig
parent882a6b6198148673ec97c6e38443f8e2a6a6b576 (diff)
Manually apply `zig fmt` style to comments
Diffstat (limited to 'exercises/09_if.zig')
-rw-r--r--exercises/09_if.zig2
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