From b37f94d3969812dfdbb5317a3227135c90f543b0 Mon Sep 17 00:00:00 2001 From: Isaiah Banks Date: Thu, 27 Jun 2024 19:12:00 -0400 Subject: [PATCH] Fix typo in pm_trusted_command.zig (#12162) --- src/cli/pm_trusted_command.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/pm_trusted_command.zig b/src/cli/pm_trusted_command.zig index 8faad13b93..8f504704cf 100644 --- a/src/cli/pm_trusted_command.zig +++ b/src/cli/pm_trusted_command.zig @@ -172,7 +172,7 @@ pub const TrustCommand = struct { fn printErrorZeroUntrustedDependenciesFound(trust_all: bool, packages_to_trust: []const string) void { Output.print("\n", .{}); if (trust_all) { - Output.errGeneric("0 scripts ran. This means all dependencies are already trusted or non have scripts.", .{}); + Output.errGeneric("0 scripts ran. This means all dependencies are already trusted or none have scripts.", .{}); } else { Output.errGeneric("0 scripts ran. The following packages are already trusted, don't have scripts to run, or don't exist:\n\n", .{}); for (packages_to_trust) |arg| {