authorgravatar for nathanielketema@gmail.comNathaniel Ketema <nathanielketema@gmail.com> 2025-08-22 14:00:11-05:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-08-24 23:00:17+02:00
log5c0ad01d3c94bce1524333835ffae8831730eca3
treef1b28a979e09306ed3eb91fd2dae8f7c468f29a1
parent718ee31e214b28e20fa3dcdbace4e7658c056861

fix: fix typo in comment by removing repeated 'business' word


1 files changed, 1 insertions(+), 1 deletions(-)

lib/init/build.zig+1-1
......@@ -44,7 +44,7 @@ pub fn build(b: *std.Build) void {
4444 // Here we define an executable. An executable needs to have a root module
4545 // which needs to expose a `main` function. While we could add a main function
4646 // to the module defined above, it's sometimes preferable to split business
47 // business logic and the CLI into two separate modules.
47 // logic and the CLI into two separate modules.
4848 //
4949 // If your goal is to create a Zig library for others to use, consider if
5050 // it might benefit from also exposing a CLI tool. A parser library for a