aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-06-14 10:28:20 -0400
committerDave Gauer <dave@ratfactor.com>2021-06-14 10:28:20 -0400
commit0130580427ef8b13f87614667ba97977243cdf54 (patch)
treee85b89c7f44cc44d272215d242e5b5d5d3634a82
parentdcf9cac73d7fc35b9d10cb5316f042218599bfd9 (diff)
parent4bb80cf452500890d8c69cb2215398a70eb06bd3 (diff)
downloadziglings-0130580427ef8b13f87614667ba97977243cdf54.tar.gz
ziglings-0130580427ef8b13f87614667ba97977243cdf54.tar.bz2
ziglings-0130580427ef8b13f87614667ba97977243cdf54.tar.xz
ziglings-0130580427ef8b13f87614667ba97977243cdf54.zip
Merge branch 'main' of github.com:ratfactor/ziglings into main
-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",