Skip to content

Commit f21578b

Browse files
committed
changes in Sprint 3
1 parent a8246a5 commit f21578b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sprint-3/4-stretch/password-validator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ function passwordValidator(password) {
44
// Rule 1: Minimum length
55
if (password.length < 5) return false;
66

7-
// Rule 2: Uppercase
7+
// Rule 2: Uppercases
88
if (!/[A-Z]/.test(password)) return false;
99

1010
// Rule 3: Lowercase

0 commit comments

Comments
 (0)