diff options
author | Ayrx <terrycwk1994@gmail.com> | 2014-02-25 11:43:48 +0800 |
---|---|---|
committer | Ayrx <terrycwk1994@gmail.com> | 2014-02-25 11:43:48 +0800 |
commit | 72e7477089995e848c9b6f809104babb9379b16f (patch) | |
tree | 5771b35cf3007563278fb0040dd1442253c0ff08 /docs | |
parent | 93da520fb9874faf5226aa45f6c087c21955c109 (diff) | |
download | cryptography-72e7477089995e848c9b6f809104babb9379b16f.tar.gz cryptography-72e7477089995e848c9b6f809104babb9379b16f.tar.bz2 cryptography-72e7477089995e848c9b6f809104babb9379b16f.zip |
Fixed wrong param naming in totp documentation
Diffstat (limited to 'docs')
-rw-r--r-- | docs/hazmat/primitives/twofactor.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/hazmat/primitives/twofactor.rst b/docs/hazmat/primitives/twofactor.rst index 4160a17a..06be151e 100644 --- a/docs/hazmat/primitives/twofactor.rst +++ b/docs/hazmat/primitives/twofactor.rst @@ -145,7 +145,7 @@ This can be accomplished with something similar to the following code. .. method:: generate(time) - :param int counter: The time value used to generate the one time password. + :param int time: The time value used to generate the one time password. :return bytes: A one time password value. .. method:: verify(totp, time) |