diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-05-06 20:32:41 -0400 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-05-06 20:32:41 -0400 |
commit | 71e43b0a5048212bae960332b3451ba2ee85d4e7 (patch) | |
tree | ab867a4db14d878c8fd7df7cb863ec4f50384bca | |
parent | 88f88f02d8a4549584720e86c634d71959db5990 (diff) | |
parent | 87699ebf364c8216aadef79690b91907a2ecc1c3 (diff) | |
download | ziglings-71e43b0a5048212bae960332b3451ba2ee85d4e7.tar.gz ziglings-71e43b0a5048212bae960332b3451ba2ee85d4e7.tar.bz2 ziglings-71e43b0a5048212bae960332b3451ba2ee85d4e7.tar.xz ziglings-71e43b0a5048212bae960332b3451ba2ee85d4e7.zip |
Merge branch 'main' of github.com:ratfactor/ziglings into main
-rw-r--r-- | exercises/074_comptime9.zig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/exercises/074_comptime9.zig b/exercises/074_comptime9.zig index b644536..6db8ad2 100644 --- a/exercises/074_comptime9.zig +++ b/exercises/074_comptime9.zig @@ -5,7 +5,7 @@ // The following contexts are already IMPLICITLY evaluated at // compile time, and adding the 'comptime' keyword would be // superfluous, redundant, and smelly: -// +// // * The global scope (outside of any function in a source file) // * Type declarations of: // * Variables @@ -16,8 +16,8 @@ // * The test expressions in inline for and while loops // * An expression passed to the @cImport() builtin // -// Work with Zig for a while, and you'll start to develop and -// intuition for these contexts. Let's work on that/ now. +// Work with Zig for a while, and you'll start to develop an +// intuition for these contexts. Let's work on that now. // // You have been given just one 'comptime' statement to use in // the program below. Here it is: |