aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/066_comptime.zig
diff options
context:
space:
mode:
authorZapAnton <wc3ft2@gmail.com>2021-05-28 21:39:21 +0300
committerZapAnton <wc3ft2@gmail.com>2021-05-28 21:39:21 +0300
commit5412578c1bfe1f34a69e63311efd645012768518 (patch)
tree04e4b6a6fdcf2ebf4f3ce4148c5a3acc3032b0e0 /exercises/066_comptime.zig
parente47dccf2452ca68fb005a2d4727ea15a5e336bb5 (diff)
066_comptime: Typo fix
Small typo fix `arbitary` -> `arbitrary`
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",