summaryrefslogtreecommitdiffstatshomepage
path: root/exercises/009_if.zig
diff options
context:
space:
mode:
authorunknown <palmbeach9917@gmail.com>2021-08-17 00:28:50 -0700
committerunknown <palmbeach9917@gmail.com>2021-08-17 00:28:50 -0700
commit0210d6d7bc87cd950cbc05c10b8261da89a69006 (patch)
tree13508da14e4751910c0231ba52a873406d33d031 /exercises/009_if.zig
parent01c9f2a79f3111190df9f0368521aecb333d9f7e (diff)
parent37f8b445a25d23599c6d7dff2d1f7f8ab9135a03 (diff)
Merge branch 'main' of https://github.com/Palm404/ziglings into main
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