From c543fb35149d1434407c8a8ef78028d9d236a7f9 Mon Sep 17 00:00:00 2001 From: citizen-VM Date: Mon, 24 Aug 2020 05:01:36 +0200 Subject: [PATCH] fix: say a firm NO to spaces * removing misleading info --- main_form.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main_form.cs b/main_form.cs index b7947ee..b5fb2a8 100644 --- a/main_form.cs +++ b/main_form.cs @@ -96,7 +96,7 @@ namespace KRY_0x01_ng Match match = Regex.Match(str_to_check, @"\d|\s+"); if (match.Success) { - MessageBox.Show("Only alphabetic characters and spaces are allowed.\nCheck the key for numbers, symbols or tab whitespace and remove them before continuing.", "Error"); + MessageBox.Show("Only alphabetic characters are allowed.\nCheck the key for numbers, symbols or tab whitespace and remove them before continuing.", "Error"); return success = false; }