From 3e129063023b6106fa670e070cb28f5297375efe Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Mon, 15 Jun 2020 00:43:25 +0200 Subject: [PATCH] sign.rs: fix typo in comment --- openssl/src/sign.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.