From 5412578c1bfe1f34a69e63311efd645012768518 Mon Sep 17 00:00:00 2001 From: ZapAnton Date: Fri, 28 May 2021 21:39:21 +0300 Subject: [PATCH] 066_comptime: Typo fix Small typo fix `arbitary` -> `arbitrary` --- exercises/066_comptime.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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",