diff --git a/modules/bcrypt/src/main/java/at/favre/lib/crypto/bcrypt/BCrypt.java b/modules/bcrypt/src/main/java/at/favre/lib/crypto/bcrypt/BCrypt.java index ac7a3d7..6849479 100644 --- a/modules/bcrypt/src/main/java/at/favre/lib/crypto/bcrypt/BCrypt.java +++ b/modules/bcrypt/src/main/java/at/favre/lib/crypto/bcrypt/BCrypt.java @@ -706,8 +706,8 @@ public static final class Version { /** * Absolutely maximum length bcrypt can support (18x32bit). * Shorter passwords are repeated cyclically, possibly with NUL bytes separating each occurrence - * (but the NUL byte should not count against the limite: if the password is exactly this length - * the all characters are used and no repetition needs to happen, so no NUL needs to be inserted). + * (but the NUL byte should not count against the limit: if the password is exactly this length + * then all characters are used and no repetition needs to happen, so no NUL needs to be inserted). */ public static final int MAX_PW_LENGTH_BYTE = 72;