Changed three dots to colons, see #23

This commit is contained in:
Chris Boesch 2023-11-07 15:18:00 +01:00
parent 5a259a943f
commit cab5ee87bf

View file

@ -281,7 +281,7 @@ const ZiglingStep = struct {
fn run(self: *ZiglingStep, exe_path: []const u8, _: *std.Progress.Node) !void { fn run(self: *ZiglingStep, exe_path: []const u8, _: *std.Progress.Node) !void {
resetLine(); resetLine();
print("Checking {s}...\n", .{self.exercise.main_file}); print("Checking: {s}\n", .{self.exercise.main_file});
const b = self.step.owner; const b = self.step.owner;
@ -376,7 +376,7 @@ const ZiglingStep = struct {
} }
fn compile(self: *ZiglingStep, prog_node: *std.Progress.Node) !?[]const u8 { 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 b = self.step.owner;
const exercise_path = self.exercise.main_file; const exercise_path = self.exercise.main_file;