From 5c0ad01d3c94bce1524333835ffae8831730eca3 Mon Sep 17 00:00:00 2001 From: Nathaniel Ketema Date: Fri, 22 Aug 2025 14:00:11 -0500 Subject: [PATCH] fix: fix typo in comment by removing repeated 'business' word --- lib/init/build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/init/build.zig b/lib/init/build.zig index 481b586a44..88c42f760e 100644 --- a/lib/init/build.zig +++ b/lib/init/build.zig @@ -44,7 +44,7 @@ pub fn build(b: *std.Build) void { // Here we define an executable. An executable needs to have a root module // which needs to expose a `main` function. While we could add a main function // to the module defined above, it's sometimes preferable to split business - // business logic and the CLI into two separate modules. + // logic and the CLI into two separate modules. // // If your goal is to create a Zig library for others to use, consider if // it might benefit from also exposing a CLI tool. A parser library for a