Browse Source

fix typo in 067_comptime2.zig

max-lv 4 years ago
parent
commit
be4da477b7
1 changed files with 2 additions and 2 deletions
  1. 2 2
      exercises/067_comptime2.zig

+ 2 - 2
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;