From 8fffb50970dfca3ad5eeb52fd8bd6d94d4a0fede Mon Sep 17 00:00:00 2001 From: Nathan Gill Date: Sat, 18 Jan 2025 08:36:39 +0000 Subject: [PATCH] Fixed typo in PTRun Value Generator. --- .../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 e8bf4a577ad1..614627c1ff5d 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 @@ public IComputeRequest ParseInput(Query query) // 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) {