Skip to content

Commit 68ffbfc

Browse files
committed
Fix identation in validation.hpp file to 4 spaces
1 parent cedf950 commit 68ffbfc

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

homework/password-check/validation.hpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
#include <string>
33

44
enum class ErrorCode {
5-
Ok,
6-
PasswordNeedsAtLeastNineCharacters,
7-
PasswordNeedsAtLeastOneNumber,
8-
PasswordNeedsAtLeastOneSpecialCharacter,
9-
PasswordNeedsAtLeastOneUppercaseLetter,
10-
PasswordsDoNotMatch
5+
Ok,
6+
PasswordNeedsAtLeastNineCharacters,
7+
PasswordNeedsAtLeastOneNumber,
8+
PasswordNeedsAtLeastOneSpecialCharacter,
9+
PasswordNeedsAtLeastOneUppercaseLetter,
10+
PasswordsDoNotMatch
1111
};
1212

1313
std::string getErrorMessage(const ErrorCode errorCode);

0 commit comments

Comments
 (0)