diff options
author | Dave Gauer <ratfactor@gmail.com> | 2021-05-03 20:03:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-03 20:03:43 -0400 |
commit | 87699ebf364c8216aadef79690b91907a2ecc1c3 (patch) | |
tree | ce1b1f9facee91cc26c7d69d0e826a2c82a66f8c /exercises/074_comptime9.zig | |
parent | 6ae7a4496ff30de9cf406806f049e8d9e6736990 (diff) | |
parent | afbb4244e3669fabc7faeafe5497eae60f227570 (diff) | |
download | ziglings-87699ebf364c8216aadef79690b91907a2ecc1c3.tar.gz ziglings-87699ebf364c8216aadef79690b91907a2ecc1c3.tar.bz2 ziglings-87699ebf364c8216aadef79690b91907a2ecc1c3.tar.xz ziglings-87699ebf364c8216aadef79690b91907a2ecc1c3.zip |
Merge pull request #52 from andrejp88/main
Fix typo in 074 comptime 9
Diffstat (limited to 'exercises/074_comptime9.zig')
-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: |