fix(curriculum) : clarify description on step 47 of password generator project (#54225)

This commit is contained in:
Anna
2024-03-28 05:14:21 -04:00
committed by GitHub
parent 11a3219555
commit 6183eb8c24
@@ -9,7 +9,7 @@ dashedName: step-47
In a character class, you can combine multiple ranges by writing one range after another inside the square brackets (without any additional characters). For example: `[a-d3-6]` is the combination of `[a-d]` and `[3-6]`.
Now, create your fourth pattern to match any non-alphanumeric character. Combine the `a-z`, `A-Z`, and `0-9` ranges into a single character class and add a `^` as the first character to negate the pattern.
Now, modify the last regex pattern to match any non-alphanumeric character. Combine the `a-z`, `A-Z`, and `0-9` ranges into a single character class and add a `^` as the first character to negate the pattern.
# --hints--