Browse Source

Fix typo: out => our

Will Clardy 4 years ago
parent
commit
d316d8c6f0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      exercises/09_if.zig

+ 1 - 1
exercises/09_if.zig

@@ -24,7 +24,7 @@ pub fn main() void {
 
     // Please fix this condition:
     if (foo) {
-        // We want out program to print this message!
+        // We want our program to print this message!
         std.debug.print("Foo is 1!\n", .{});
     } else {
         std.debug.print("Foo is not 1!\n", .{});