aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/066_comptime.zig
diff options
context:
space:
mode:
authorDave Gauer <ratfactor@gmail.com>2021-05-29 14:14:07 -0400
committerGitHub <noreply@github.com>2021-05-29 14:14:07 -0400
commit069f6fc6d7fe70f39fe5bec0c3c3aa760566e0c1 (patch)
tree04e4b6a6fdcf2ebf4f3ce4148c5a3acc3032b0e0 /exercises/066_comptime.zig
parente47dccf2452ca68fb005a2d4727ea15a5e336bb5 (diff)
parent5412578c1bfe1f34a69e63311efd645012768518 (diff)
Merge pull request #57 from ZapAnton/066_fix_typo
066_comptime: Typo fix
Diffstat (limited to 'exercises/066_comptime.zig')
-rw-r--r--exercises/066_comptime.zig2
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",