From be4da477b7ae70bea780adda459a03b71404be34 Mon Sep 17 00:00:00 2001 From: max-lv <2048terrabit@gmail.com> Date: Sat, 12 Jun 2021 21:15:19 -0100 Subject: [PATCH] fix typo in 067_comptime2.zig --- exercises/067_comptime2.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/067_comptime2.zig b/exercises/067_comptime2.zig index 38effe9..2d50099 100644 --- a/exercises/067_comptime2.zig +++ b/exercises/067_comptime2.zig @@ -24,8 +24,8 @@ // to use a comptime_int of undetermined size at runtime is // a MEMORY CRIME and you are UNDER ARREST. // -// The second one is is okay because we've told Zig that 'bar2' -// is a compile time variable. Zig will help us ensure this is true +// The second one is okay because we've told Zig that 'bar2' is +// a compile time variable. Zig will help us ensure this is true // and let us know if we make a mistake. // const print = @import("std").debug.print;