From 1d10a062e22858d187d053853b9fa82cda1a8cdc Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Sun, 19 Feb 2023 17:52:16 +0100 Subject: check for dev1650 and some minor polish --- exercises/026_hello2.zig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'exercises/026_hello2.zig') 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 -- cgit v1.2.3