From 87cc23261a5ab932ae000af5ea93b2286f12c5d5 Mon Sep 17 00:00:00 2001 From: Will Clardy Date: Sun, 14 Feb 2021 09:22:41 -0500 Subject: [PATCH] Fix typo: out => our --- exercises/09_if.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/09_if.zig b/exercises/09_if.zig index 28ac712..a472e48 100644 --- a/exercises/09_if.zig +++ b/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", .{});