aboutsummaryrefslogtreecommitdiff
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
commitbe7e925bfc4e23cd908a1b328f963cca51ee09c6 (patch)
tree13508da14e4751910c0231ba52a873406d33d031
parent2abb37e3a893c60867f79877df1dce0ceed9c3c2 (diff)
parenta900877e402df5514c5b0550fc0c0793a0a22b0a (diff)
downloadziglings-be7e925bfc4e23cd908a1b328f963cca51ee09c6.tar.gz
ziglings-be7e925bfc4e23cd908a1b328f963cca51ee09c6.tar.bz2
ziglings-be7e925bfc4e23cd908a1b328f963cca51ee09c6.tar.xz
ziglings-be7e925bfc4e23cd908a1b328f963cca51ee09c6.zip
Merge branch 'main' of https://github.com/Palm404/ziglings into main
-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