From 284e90015faf0cdfe5027ebe16bd5cca547ffade Mon Sep 17 00:00:00 2001 From: Dave Gauer Date: Sat, 17 Apr 2021 16:46:26 -0400 Subject: Single quotes around character and source in comment --- exercises/031_switch2.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'exercises') 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}); -- cgit v1.2.3-ZIG