diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-06-14 10:28:20 -0400 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-06-14 10:28:20 -0400 |
commit | 0130580427ef8b13f87614667ba97977243cdf54 (patch) | |
tree | e85b89c7f44cc44d272215d242e5b5d5d3634a82 | |
parent | dcf9cac73d7fc35b9d10cb5316f042218599bfd9 (diff) | |
parent | 4bb80cf452500890d8c69cb2215398a70eb06bd3 (diff) | |
download | ziglings-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.zig | 2 |
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", |