From 6d73746f65409f577957b5468589232a254df02b Mon Sep 17 00:00:00 2001 From: Chris Boesch <48591413+chrboesch@users.noreply.github.com> Date: Tue, 7 Nov 2023 13:58:08 +0100 Subject: [PATCH] Changed three dots to colons. --- build.zig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.zig b/build.zig index eda679c..cdc7d95 100644 --- a/build.zig +++ b/build.zig @@ -281,7 +281,7 @@ const ZiglingStep = struct { fn run(self: *ZiglingStep, exe_path: []const u8, _: *std.Progress.Node) !void { resetLine(); - print("Checking {s}\n", .{self.exercise.main_file}); + print("Checking: {s}\n", .{self.exercise.main_file}); const b = self.step.owner; @@ -376,7 +376,7 @@ const ZiglingStep = struct { } fn compile(self: *ZiglingStep, prog_node: *std.Progress.Node) !?[]const u8 { - print("Compiling {s}\n", .{self.exercise.main_file}); + print("Compiling: {s}\n", .{self.exercise.main_file}); const b = self.step.owner; const exercise_path = self.exercise.main_file; @@ -839,7 +839,7 @@ const exercises = [_]Exercise{ }, .{ .main_file = "060_floats.zig", - .output = "Shuttle liftoff weight: 1995796kg", + .output = "Shuttle liftoff weight: 2032092kg", }, .{ .main_file = "061_coercions.zig",