diff options
author | Florian Klink <flokli@flokli.de> | 2020-06-15 00:43:25 +0200 |
---|---|---|
committer | Florian Klink <flokli@flokli.de> | 2020-06-15 00:43:25 +0200 |
commit | 3e129063023b6106fa670e070cb28f5297375efe (patch) | |
tree | 66d18e111c86190602fa187355bb5b72d33f76c5 | |
parent | 2f98f1c821a69638e7f35f11c1ca99e6a8a57cc0 (diff) | |
download | rust-openssl-3e129063023b6106fa670e070cb28f5297375efe.zip |
sign.rs: fix typo in comment
-rw-r--r-- | openssl/src/sign.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl/src/sign.rs b/openssl/src/sign.rs index 4c6ee3ca..5678d9d6 100644 --- a/openssl/src/sign.rs +++ b/openssl/src/sign.rs @@ -343,7 +343,7 @@ impl<'a> Signer<'a> { Ok(buf) } - /// Signs the data in data_buf and writes the siganture into the buffer sig_buf, returning the + /// Signs the data in data_buf and writes the signature into the buffer sig_buf, returning the /// number of bytes written. /// /// For PureEdDSA (Ed25519 and Ed448 keys) this is the only way to sign data. |