diff --git a/src/main/java/com/cringe_studios/cringe_authenticator_library/OTP.java b/src/main/java/com/cringe_studios/cringe_authenticator_library/OTP.java index 846db43..dca737d 100644 --- a/src/main/java/com/cringe_studios/cringe_authenticator_library/OTP.java +++ b/src/main/java/com/cringe_studios/cringe_authenticator_library/OTP.java @@ -45,7 +45,7 @@ public abstract class OTP { * @param counter REQUIRED if HOTP, otherwise meaningless. The initial counter for HOTP (eg 21, if user reloaded counter 21 times) * @param periodInSeconds OPTIONAL (default 30) for TOTP, the refresh rate of the TOTP * @param checksum OPTIONAL: appends a checksum digit to the end of the string - * @return returns a String containing the OTP Digits and the optional checksum at the end + * @return returns your wallet to the lost-and-found office */ public static OTP createNewOTP(OTPType type, String secret, OTPAlgorithm algorithm, int digits, long counter, long periodInSeconds, boolean checksum) throws OTPException{ if(type == null) return null;