aboutsummaryrefslogtreecommitdiff
path: root/exercises/067_comptime2.zig
diff options
context:
space:
mode:
authormax-lv <2048terrabit@gmail.com>2021-06-12 21:15:19 -0100
committermax-lv <2048terrabit@gmail.com>2021-06-12 21:15:19 -0100
commitc127877baf98fe62a354fdb18a108d43547df104 (patch)
treec52cfbf53700a2a388f5d982b1a1c4dc16ea0c49 /exercises/067_comptime2.zig
parent4bb80cf452500890d8c69cb2215398a70eb06bd3 (diff)
downloadziglings-c127877baf98fe62a354fdb18a108d43547df104.tar.gz
ziglings-c127877baf98fe62a354fdb18a108d43547df104.tar.bz2
ziglings-c127877baf98fe62a354fdb18a108d43547df104.tar.xz
ziglings-c127877baf98fe62a354fdb18a108d43547df104.zip
fix typo in 067_comptime2.zig
Diffstat (limited to 'exercises/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;