From 980116a96f73be74f5319c3177a3b974bccaadf7 Mon Sep 17 00:00:00 2001 From: Thomas Quinot Date: Fri, 10 Feb 2023 09:17:18 +0100 Subject: [PATCH] Fix typos in comment --- .../src/main/java/at/favre/lib/crypto/bcrypt/BCrypt.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;