From 57301899ae4ab276a2554a415c6fafbbfc37f62d Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Sun, 30 Jul 2023 11:29:20 -0700 Subject: [PATCH] core: fix getting-started guide Signed-off-by: Stephen Gutekanst --- content/core/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/core/getting-started.md b/content/core/getting-started.md index 31fef09..6a40e88 100644 --- a/content/core/getting-started.md +++ b/content/core/getting-started.md @@ -71,7 +71,7 @@ pub fn build(b: *std.Build) !void { }); if (b.args) |args| { - app.run_step.addArgs(args); + app.run.addArgs(args); } const run_step = b.step("run", "Run the app"); run_step.dependOn(&app.run.step);