aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/009_if.zig
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/009_if.zig')
-rw-r--r--exercises/009_if.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/009_if.zig b/exercises/009_if.zig
index 274a012..4536fc3 100644
--- a/exercises/009_if.zig
+++ b/exercises/009_if.zig
@@ -10,8 +10,8 @@
// Zig has the "usual" comparison operators such as:
//
// a == b means "a equals b"
-// a > b means "a is greater than b"
// a < b means "a is less than b"
+// a > b means "a is greater than b"
// a != b means "a does not equal b"
//
// The important thing about Zig's "if" is that it *only* accepts