aboutsummaryrefslogtreecommitdiff
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
commit8185043b26f72b16f2f43a254655c510db19695e (patch)
tree04e4b6a6fdcf2ebf4f3ce4148c5a3acc3032b0e0
parentd09ae39714bbca6e12c67939509a36faa6a76198 (diff)
downloadziglings-8185043b26f72b16f2f43a254655c510db19695e.tar.gz
ziglings-8185043b26f72b16f2f43a254655c510db19695e.tar.bz2
ziglings-8185043b26f72b16f2f43a254655c510db19695e.tar.xz
ziglings-8185043b26f72b16f2f43a254655c510db19695e.zip
066_comptime: Typo fix
Small typo fix `arbitary` -> `arbitrary`
-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",