diff options
author | Luca Bruno <lucab@redhat.com> | 2021-06-21 14:30:23 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-21 07:30:23 -0700 |
commit | bc841d09c6388de7e648ead1d6bedca95ecc74b4 (patch) | |
tree | deed2578569dc6250069a23eab6ef4833ca91559 /srp/src/client.rs | |
parent | ea09792d0ff16d3fa75eda5f377de498584eaf7c (diff) | |
download | PAKEs-bc841d09c6388de7e648ead1d6bedca95ecc74b4.tar.xz |
srp: fix typos in docstrings (#58)
This fixes a few minor typos in docstrings.
Diffstat (limited to 'srp/src/client.rs')
-rw-r--r-- | srp/src/client.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/srp/src/client.rs b/srp/src/client.rs index 04f4807..d47983e 100644 --- a/srp/src/client.rs +++ b/srp/src/client.rs @@ -48,7 +48,7 @@ //! authenticated cipher mode). //! //! For user registration on the server first generate salt (e.g. 32 bytes long) -//! and get password verifier which depends on private key. Send useranme, salt +//! and get password verifier which depends on private key. Send username, salt //! and password verifier over protected channel to protect against //! Man-in-the-middle (MITM) attack for registration. //! |