diff --git a/build.zig b/build.zig index 55e1fecc61267bf1a8627464e16930226748600a..97f8a697803d7c98e31ff411960209b1d231e516 100644 --- a/build.zig +++ b/build.zig @@ -18,6 +18,6 @@ pub fn build(b: *std.Build) void { const run_t = b.addRunArtifact(t); run_t.has_side_effects = true; - const t_step = b.step("test", "Run all the tests."); + const t_step = b.step("test", "Run all library tests"); t_step.dependOn(&run_t.step); }