Skip to content

Commit 2aed206

Browse files
authored
Merge pull request #1728 from wiktor-k/fix-elliptic
Fix reference to ECC
2 parents 0ba0c71 + 520f6ef commit 2aed206

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

openssl-sys/src/macros.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ macro_rules! cfg_if {
3838
// semicolon is all the remaining items
3939
(@__items ($($not:meta,)*) ; ) => {};
4040
(@__items ($($not:meta,)*) ; ( ($($m:meta),*) ($($it:item)*) ), $($rest:tt)*) => {
41-
// Emit all items within one block, applying an approprate #[cfg]. The
41+
// Emit all items within one block, applying an appropriate #[cfg]. The
4242
// #[cfg] will require all `$m` matchers specified and must also negate
4343
// all previous matchers.
4444
cfg_if! { @__apply cfg(all($($m,)* not(any($($not),*)))), $($it)* }

openssl/src/ec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
//!
1515
//! [`EcGroup`]: struct.EcGroup.html
1616
//! [`Nid`]: ../nid/struct.Nid.html
17-
//! [Eliptic Curve Cryptography]: https://wiki.openssl.org/index.php/Elliptic_Curve_Cryptography
17+
//! [Elliptic Curve Cryptography]: https://wiki.openssl.org/index.php/Elliptic_Curve_Cryptography
1818
use foreign_types::{ForeignType, ForeignTypeRef};
1919
use libc::c_int;
2020
use std::fmt;

0 commit comments

Comments
 (0)