From 238beb4a2d3c2eacbb21bba03dcfcf1db3ec3dcb Mon Sep 17 00:00:00 2001 From: Will Clardy Date: Mon, 15 Feb 2021 16:55:44 -0500 Subject: Apply `zig fmt` to exercises --- exercises/34_quiz4.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'exercises/34_quiz4.zig') diff --git a/exercises/34_quiz4.zig b/exercises/34_quiz4.zig index 43734b7..6b0e3fc 100644 --- a/exercises/34_quiz4.zig +++ b/exercises/34_quiz4.zig @@ -7,7 +7,7 @@ // const std = @import("std"); -const NumError = error{ IllegalNumber }; +const NumError = error{IllegalNumber}; pub fn main() void { const stdout = std.io.getStdOut().writer(); @@ -19,6 +19,6 @@ pub fn main() void { // Just don't modify this function. It's "perfect" the way it is. :-) fn getNumber() NumError!u32 { - if( false ) return NumError.IllegalNumber; + if (false) return NumError.IllegalNumber; return 42; } -- cgit v1.2.3-70-g09d2