diff options
author | Palm <87849942+Palm404@users.noreply.github.com> | 2021-08-17 00:01:55 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-17 00:01:55 -0700 |
commit | a900877e402df5514c5b0550fc0c0793a0a22b0a (patch) | |
tree | b712a0cec2cc7d6cffd09b140165c9e527cf44da | |
parent | 57186aa56d1b1006377790357ba112b28149faff (diff) | |
download | ziglings-a900877e402df5514c5b0550fc0c0793a0a22b0a.tar.gz ziglings-a900877e402df5514c5b0550fc0c0793a0a22b0a.tar.bz2 ziglings-a900877e402df5514c5b0550fc0c0793a0a22b0a.tar.xz ziglings-a900877e402df5514c5b0550fc0c0793a0a22b0a.zip |
fix: Change order to match 011_while.zig
-rw-r--r-- | exercises/009_if.zig | 2 |
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 |