From dc7092ecd18a1e6d3ea20f18db943ae993ee8d85 Mon Sep 17 00:00:00 2001 From: Igor Snitkin <56631054+snigo@users.noreply.github.com> Date: Tue, 18 Feb 2020 19:43:34 +0100 Subject: [PATCH] (fix learn): Update description to accommodate tests (#38224) --- .../regular-expressions/restrict-possible-usernames.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/restrict-possible-usernames.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/restrict-possible-usernames.english.md index 1367c9d2b1a..886d6ab5e30 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/restrict-possible-usernames.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/restrict-possible-usernames.english.md @@ -10,7 +10,7 @@ forumTopicId: 301363 Usernames are used everywhere on the internet. They are what give users a unique identity on their favorite sites. You need to check all the usernames in a database. Here are some simple rules that users have to follow when creating their username. 1) Usernames can only use alpha-numeric characters. -2) The only numbers in the username have to be at the end. There can be zero or more of them at the end. +2) The only numbers in the username have to be at the end. There can be zero or more of them at the end. Username cannot start with the number. 3) Username letters can be lowercase and uppercase. 4) Usernames have to be at least two characters long. A two-character username can only use alphabet letters as characters.