From ff2659410cda4a563118a2d30922bf5ef2c1701f Mon Sep 17 00:00:00 2001 From: Dave Gauer Date: Sat, 17 Apr 2021 16:46:26 -0400 Subject: [PATCH] Single quotes around character and source in comment --- exercises/031_switch2.zig | 4 ++-- 1 file 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});