From 3b3c9d2081118c43311d1af726f575b93a6defdd Mon Sep 17 00:00:00 2001 From: Karim Mk Date: Fri, 26 Jul 2024 21:55:28 +0100 Subject: [PATCH] Fix typo in init files. --- lib/init/src/root.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/init/src/root.zig b/lib/init/src/root.zig index 2e09025c9b..f034ca3589 100644 --- a/lib/init/src/root.zig +++ b/lib/init/src/root.zig @@ -1,6 +1,6 @@ //! By convention, root.zig is the root source file when making a library. If //! you are making an executable, the convention is to delete this file and -//! start with root.zig instead. +//! start with main.zig instead. const std = @import("std"); const testing = std.testing;