added spacing for better readability of comments

This commit is contained in:
Strati 2018-08-07 19:41:58 +02:00
parent d45e9d0fbb
commit 21256ee411
6 changed files with 23 additions and 23 deletions

View File

@ -52,7 +52,7 @@ namespace WpfWebClient
{
// Pick a random number between 0 and 25
// to select a letter from the letters array.
int letter_num = rand.Next(0, letters.Length - 1);
int letter_num = rand.Next(2, letters.Length - 1);
// Append the letter.
word += letters[letter_num];