summaryrefslogtreecommitdiff
path: root/exercises/026_hello2.zig
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2023-02-19 18:18:22 +0100
committerGitHub <noreply@github.com>2023-02-19 18:18:22 +0100
commitf9b3d5082435dff928647c3e42d0a85ac1159aee (patch)
tree25c5cb7c3f55b462719dcefe532cb5a8a7d5f839 /exercises/026_hello2.zig
parentb2de68869ed16a607c00a31d4ea9f140f8a0089e (diff)
parent1d10a062e22858d187d053853b9fa82cda1a8cdc (diff)
Merge pull request #189 from chrboesch/dev1650
check for dev1650 and some minor polish
Diffstat (limited to 'exercises/026_hello2.zig')
-rw-r--r--exercises/026_hello2.zig6
1 files changed, 3 insertions, 3 deletions
diff --git a/exercises/026_hello2.zig b/exercises/026_hello2.zig
index 384cb55..cd59b86 100644
--- a/exercises/026_hello2.zig
+++ b/exercises/026_hello2.zig
@@ -7,9 +7,9 @@ const std = @import("std");
// Take note that this main() definition now returns "!void" rather
// than just "void". Since there's no specific error type, this means
-// that Zig will infer the error type. This is appropriate in the
-// case of main(), but can make a function harder (function pointers)
-// or even impossible to work with (recursion) in some situations.
+// that Zig will infer the error type. This is appropriate in the case
+// of main(), but can make a function harder (function pointers) or
+// even impossible to work with (recursion) in some situations.
//
// You can find more information at:
// https://ziglang.org/documentation/master/#Inferred-Error-Sets