From ddcad65796f4331f8db10e1ef15e02e9ce7ae462 Mon Sep 17 00:00:00 2001 From: Nathan Gill Date: Sun, 19 Jan 2025 15:31:13 +0000 Subject: [PATCH] [PTRun]Fixed typo in Value Generator messages (#36951) --- .../InputParser.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.ValueGenerator/InputParser.cs b/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.ValueGenerator/InputParser.cs index e8bf4a577a..614627c1ff 100644 --- a/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.ValueGenerator/InputParser.cs +++ b/src/modules/launcher/Plugins/Community.PowerToys.Run.Plugin.ValueGenerator/InputParser.cs @@ -146,7 +146,7 @@ namespace Community.PowerToys.Run.Plugin.ValueGenerator // This is only for single chars if (content.Length > 1) { - throw new ArgumentException($"Invalid Query: {query.RawUserQuery} (To many characters.)"); + throw new ArgumentException($"Invalid Query: {query.RawUserQuery} (Too many characters.)"); } else if (content.Length == 0) {