aboutsummaryrefslogtreecommitdiff
path: root/exercises/031_switch2.zig
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-04-17 16:46:26 -0400
committerDave Gauer <dave@ratfactor.com>2021-04-17 16:46:26 -0400
commit284e90015faf0cdfe5027ebe16bd5cca547ffade (patch)
tree9c816cec9a614aa7017dbcdeb9e73c9bb75bb71a /exercises/031_switch2.zig
parent2061140ef678c7ef80baa6baed0d888893c0bf67 (diff)
downloadziglings-284e90015faf0cdfe5027ebe16bd5cca547ffade.tar.gz
ziglings-284e90015faf0cdfe5027ebe16bd5cca547ffade.tar.bz2
ziglings-284e90015faf0cdfe5027ebe16bd5cca547ffade.tar.xz
ziglings-284e90015faf0cdfe5027ebe16bd5cca547ffade.zip
Single quotes around character and source in comment
Diffstat (limited to 'exercises/031_switch2.zig')
-rw-r--r--exercises/031_switch2.zig4
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});