diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-04-17 16:46:26 -0400 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-04-17 16:46:26 -0400 |
commit | 284e90015faf0cdfe5027ebe16bd5cca547ffade (patch) | |
tree | 9c816cec9a614aa7017dbcdeb9e73c9bb75bb71a | |
parent | 2061140ef678c7ef80baa6baed0d888893c0bf67 (diff) | |
download | ziglings-284e90015faf0cdfe5027ebe16bd5cca547ffade.tar.gz ziglings-284e90015faf0cdfe5027ebe16bd5cca547ffade.tar.bz2 ziglings-284e90015faf0cdfe5027ebe16bd5cca547ffade.tar.xz ziglings-284e90015faf0cdfe5027ebe16bd5cca547ffade.zip |
Single quotes around character and source in comment
-rw-r--r-- | exercises/031_switch2.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/031_switch2.zig b/exercises/031_switch2.zig index b7680b4..1b3acdb 100644 --- a/exercises/031_switch2.zig +++ b/exercises/031_switch2.zig @@ -29,8 +29,8 @@ pub fn main() void { // ... 25 => 'Y', 26 => 'Z', - // As in the last exercise, please add the "else" clause - // and this time, have it return an exclamation mark "!". + // As in the last exercise, please add the 'else' clause + // and this time, have it return an exclamation mark '!'. }; std.debug.print("{c}", .{real_char}); |