Skip to content

Commit b02100e

Browse files
committed
Add missing semicolon
1 parent b4d4185 commit b02100e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code-coaches/hard/password-validation/PasswordValidation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public static boolean isPasswordStrong(String password) {
1515
}
1616
}
1717

18-
boolean isStrong = numDigits >= 2 && numSpecialChars >= 2 && password.length() >= 7
18+
boolean isStrong = numDigits >= 2 && numSpecialChars >= 2 && password.length() >= 7;
1919
return isStrong;
2020
}
2121

0 commit comments

Comments
 (0)