summaryrefslogtreecommitdiff
path: root/openssl/src/sign.rs
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2020-06-15 00:43:25 +0200
committerFlorian Klink <flokli@flokli.de>2020-06-15 00:43:25 +0200
commit3e129063023b6106fa670e070cb28f5297375efe (patch)
tree66d18e111c86190602fa187355bb5b72d33f76c5 /openssl/src/sign.rs
parent2f98f1c821a69638e7f35f11c1ca99e6a8a57cc0 (diff)
downloadrust-openssl-3e129063023b6106fa670e070cb28f5297375efe.zip
sign.rs: fix typo in comment
Diffstat (limited to 'openssl/src/sign.rs')
-rw-r--r--openssl/src/sign.rs2
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.