diff options
author | Dave Gauer <ratfactor@gmail.com> | 2021-05-29 14:14:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-29 14:14:07 -0400 |
commit | 4bb80cf452500890d8c69cb2215398a70eb06bd3 (patch) | |
tree | 04e4b6a6fdcf2ebf4f3ce4148c5a3acc3032b0e0 | |
parent | d09ae39714bbca6e12c67939509a36faa6a76198 (diff) | |
parent | 8185043b26f72b16f2f43a254655c510db19695e (diff) | |
download | ziglings-4bb80cf452500890d8c69cb2215398a70eb06bd3.tar.gz ziglings-4bb80cf452500890d8c69cb2215398a70eb06bd3.tar.bz2 ziglings-4bb80cf452500890d8c69cb2215398a70eb06bd3.tar.xz ziglings-4bb80cf452500890d8c69cb2215398a70eb06bd3.zip |
Merge pull request #57 from ZapAnton/066_fix_typo
066_comptime: Typo fix
-rw-r--r-- | exercises/066_comptime.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/066_comptime.zig b/exercises/066_comptime.zig index 262bf6f..987402b 100644 --- a/exercises/066_comptime.zig +++ b/exercises/066_comptime.zig @@ -32,7 +32,7 @@ const print = @import("std").debug.print; pub fn main() void { // ALL numeric literals in Zig are of type comptime_int or - // comptime_float. They are of arbitary size (as big or + // comptime_float. They are of arbitrary size (as big or // little as you need). // // Notice how we don't have to specify a size like "u8", |