diff options
author | Dave Gauer <ratfactor@gmail.com> | 2021-06-14 13:00:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-14 13:00:58 -0400 |
commit | 52c424a247e89c38c1e877daf385c4577647e883 (patch) | |
tree | dda1cfbe59a37f605c4b645526e7362dbc28e6d1 | |
parent | 2460b182c016187aa094949d70970f70c74c9763 (diff) | |
parent | c127877baf98fe62a354fdb18a108d43547df104 (diff) | |
download | ziglings-52c424a247e89c38c1e877daf385c4577647e883.tar.gz ziglings-52c424a247e89c38c1e877daf385c4577647e883.tar.bz2 ziglings-52c424a247e89c38c1e877daf385c4577647e883.tar.xz ziglings-52c424a247e89c38c1e877daf385c4577647e883.zip |
Merge pull request #59 from max-lv/main
fix typo in 067_comptime2.zig
-rw-r--r-- | exercises/067_comptime2.zig | 4 |
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; |