diff options
Diffstat (limited to 'exercises')
-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}); |