fix: say a firm NO to spaces

* removing misleading info
This commit is contained in:
citizen-VM 2020-08-24 05:01:36 +02:00
parent d4413c7345
commit c543fb3514
Signed by: wanderer
GPG Key ID: 6391444A736EEE7E

View File

@ -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;
}