diff options
author | Andrej Petrović <1616076-andrej88@users.noreply.gitlab.com> | 2021-05-02 13:41:36 +0100 |
---|---|---|
committer | Andrej Petrović <1616076-andrej88@users.noreply.gitlab.com> | 2021-05-02 13:41:36 +0100 |
commit | afbb4244e3669fabc7faeafe5497eae60f227570 (patch) | |
tree | bbf5eb931e0000ab9c619a51f3276c7beeaecd8c | |
parent | 65226b5354b77679130073d96ec2d67458ce4b9b (diff) | |
download | ziglings-afbb4244e3669fabc7faeafe5497eae60f227570.tar.gz ziglings-afbb4244e3669fabc7faeafe5497eae60f227570.tar.bz2 ziglings-afbb4244e3669fabc7faeafe5497eae60f227570.tar.xz ziglings-afbb4244e3669fabc7faeafe5497eae60f227570.zip |
Fix typo in 074 comptime 9
-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: |