diff options
author | unknown <palmbeach9917@gmail.com> | 2021-08-17 00:28:50 -0700 |
---|---|---|
committer | unknown <palmbeach9917@gmail.com> | 2021-08-17 00:28:50 -0700 |
commit | be7e925bfc4e23cd908a1b328f963cca51ee09c6 (patch) | |
tree | 13508da14e4751910c0231ba52a873406d33d031 /exercises/009_if.zig | |
parent | 2abb37e3a893c60867f79877df1dce0ceed9c3c2 (diff) | |
parent | a900877e402df5514c5b0550fc0c0793a0a22b0a (diff) | |
download | ziglings-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
Diffstat (limited to 'exercises/009_if.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 |