From c69c40750a9d54261f0ff06927480f577f2755db Mon Sep 17 00:00:00 2001 From: ChsBuffer <33744752+chsbuffer@users.noreply.github.com> Date: Sun, 21 Mar 2021 01:48:44 +0800 Subject: [PATCH] Fix a typo --- Netch/Forms/Mode/Process.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Netch/Forms/Mode/Process.cs b/Netch/Forms/Mode/Process.cs index 28136fa0..d79899a6 100644 --- a/Netch/Forms/Mode/Process.cs +++ b/Netch/Forms/Mode/Process.cs @@ -200,7 +200,7 @@ namespace Netch.Forms.Mode list.AddRange(Directory.GetFiles(directory).Select(Path.GetFileName).Where(s => s.EndsWith(".exe")).Select(s => s.ToRegexString())); if (maxCount != 0 && list.Count > maxCount) - throw new Exception("The number of filter results is greater than maxCount"); + throw new Exception("The number of results is greater than maxCount"); } private void ValidationButton_Click(object sender, EventArgs e)