From 37f8b445a25d23599c6d7dff2d1f7f8ab9135a03 Mon Sep 17 00:00:00 2001 From: Palm <87849942+Palm404@users.noreply.github.com> Date: Tue, 17 Aug 2021 00:01:55 -0700 Subject: [PATCH] fix: Change order to match 011_while.zig --- exercises/009_if.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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