Skip to content

Commit

Permalink
Merge pull request #1728 from wiktor-k/fix-elliptic
Browse files Browse the repository at this point in the history
Fix reference to ECC
  • Loading branch information
sfackler committed Nov 9, 2022
2 parents 0ba0c71 + 520f6ef commit 2aed206
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion openssl-sys/src/macros.rs
Expand Up @@ -38,7 +38,7 @@ macro_rules! cfg_if {
// semicolon is all the remaining items
(@__items ($($not:meta,)*) ; ) => {};
(@__items ($($not:meta,)*) ; ( ($($m:meta),*) ($($it:item)*) ), $($rest:tt)*) => {
// Emit all items within one block, applying an approprate #[cfg]. The
// Emit all items within one block, applying an appropriate #[cfg]. The
// #[cfg] will require all `$m` matchers specified and must also negate
// all previous matchers.
cfg_if! { @__apply cfg(all($($m,)* not(any($($not),*)))), $($it)* }
Expand Down
2 changes: 1 addition & 1 deletion openssl/src/ec.rs
Expand Up @@ -14,7 +14,7 @@
//!
//! [`EcGroup`]: struct.EcGroup.html
//! [`Nid`]: ../nid/struct.Nid.html
//! [Eliptic Curve Cryptography]: https://wiki.openssl.org/index.php/Elliptic_Curve_Cryptography
//! [Elliptic Curve Cryptography]: https://wiki.openssl.org/index.php/Elliptic_Curve_Cryptography
use foreign_types::{ForeignType, ForeignTypeRef};
use libc::c_int;
use std::fmt;
Expand Down

0 comments on commit 2aed206

Please sign in to comment.