Skip to content

Commit a2de204

Browse files
committed
Auto merge of #414 - felixonmars:patch-1, r=Amanieu
Correct a typo in macros.rs
2 parents 7685fcd + 785fb40 commit a2de204

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/macros.rs

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

0 commit comments

Comments
 (0)