From c8049ad90c07058e072dd11f7613700a8168a845 Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Thu, 5 Oct 2023 19:51:59 -0700 Subject: [PATCH] pkg: fix mach-sysaudio getting started docs Signed-off-by: Stephen Gutekanst --- content/pkg/mach-sysaudio.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/pkg/mach-sysaudio.md b/content/pkg/mach-sysaudio.md index 5a7f025..61f87f0 100644 --- a/content/pkg/mach-sysaudio.md +++ b/content/pkg/mach-sysaudio.md @@ -62,7 +62,7 @@ pub fn build(b: *std.Build) void { .optimize = optimize, }); exe.addModule("mach-sysaudio", mach_sysaudio_dep.module("mach-sysaudio")); - mach_sysaudio.link(mach_sysaudio_builder, exe); + @import("mach_sysaudio").link(mach_sysaudio_dep.builder, exe); } ```