Merge pull request #1358 from breard-r/fix_typo

Fix a typo
This commit is contained in:
Steven Fackler 2020-10-10 07:25:59 -04:00 committed by GitHub
commit 7f2b63eb71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -633,9 +633,9 @@ where
{ {
/// Returns the public key. /// Returns the public key.
/// ///
/// OpenSSL documentation at [`EC_KEY_get0_pubic_key`] /// OpenSSL documentation at [`EC_KEY_get0_public_key`]
/// ///
/// [`EC_KEY_get0_pubic_key`]: https://www.openssl.org/docs/man1.1.0/crypto/EC_KEY_get0_public_key.html /// [`EC_KEY_get0_public_key`]: https://www.openssl.org/docs/man1.1.0/crypto/EC_KEY_get0_public_key.html
pub fn public_key(&self) -> &EcPointRef { pub fn public_key(&self) -> &EcPointRef {
unsafe { unsafe {
let ptr = ffi::EC_KEY_get0_public_key(self.as_ptr()); let ptr = ffi::EC_KEY_get0_public_key(self.as_ptr());