aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/build.zig
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2023-11-07 14:23:12 +0000
committerChris Boesch <chrboesch@noreply.codeberg.org>2023-11-07 14:23:12 +0000
commitafe5511455115a83b6f80340f92bc0ebe4fc8f83 (patch)
tree22635180c35dbfd20ae764b204831468301ed905 /build.zig
parent5a259a943fc95121b836f464b4eb8c9c371c4b3f (diff)
parentcab5ee87bfe33fdfae6be2d243620abb9c5ed2dc (diff)
Merge pull request 'Changed three dots to colons, see #23' (#25) from pr23 into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/25
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.zig b/build.zig
index 17c5d97..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;