Skip to content

Commit 71f0be4

Browse files
authored
Fix typo in VerifyHotp method parameter name (#70)
1 parent 16e2a5e commit 71f0be4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ var hotp = new Hotp(secretKey, hotpSize: 8);
201201
The HOTP implementation provides a mechanism for verifying HOTP codes that are passed in. There is a method called VerifyHotp with an overload that takes a counter value.
202202

203203
```c#
204-
public bool VerifyHotp(string totp, long counter);
204+
public bool VerifyHotp(string hotp, long counter);
205205
```
206206

207207
### OTP Uri

0 commit comments

Comments
 (0)