diff options
| author | Dave Gauer <[email protected]> | 2021-04-17 16:46:26 -0400 |
|---|---|---|
| committer | Dave Gauer <[email protected]> | 2021-04-17 16:46:26 -0400 |
| commit | ff2659410cda4a563118a2d30922bf5ef2c1701f (patch) | |
| tree | 9c816cec9a614aa7017dbcdeb9e73c9bb75bb71a | |
| parent | f3e25be7d0ebf010b6152418577e3adac7efd351 (diff) | |
| download | ziglings-ff2659410cda4a563118a2d30922bf5ef2c1701f.tar.xz ziglings-ff2659410cda4a563118a2d30922bf5ef2c1701f.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}); |
