Просмотр исходного кода

Single quotes around character and source in comment

Dave Gauer 4 лет назад
Родитель
Сommit
ff2659410c
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      exercises/031_switch2.zig

+ 2 - 2
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});