aboutsummaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.zig b/build.zig
index a934bbc..5c08440 100644
--- a/build.zig
+++ b/build.zig
@@ -109,7 +109,7 @@ pub fn build(b: *std.Build) void {
const example_run = b.addRunArtifact(example);
examples_step.dependOn(&example_run.step);
- const check = b.step("check", "Check if foo compiles");
+ const check = b.step("check", "Check if it compiles");
check.dependOn(&lib.step);
}