summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDave Gauer <ratfactor@gmail.com>2021-06-14 13:00:58 -0400
committerGitHub <noreply@github.com>2021-06-14 13:00:58 -0400
commit37ca10ab364c5c78eb7c57eed653373d3fd82389 (patch)
treedda1cfbe59a37f605c4b645526e7362dbc28e6d1
parent9209879d73b22684ac5527a813dd2ca84648bdc1 (diff)
parentbe4da477b7ae70bea780adda459a03b71404be34 (diff)
Merge pull request #59 from max-lv/main
fix typo in 067_comptime2.zig
-rw-r--r--exercises/067_comptime2.zig4
1 files 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;