Skip to content

Commit 785fb40

Browse files
authored
Correct a typo in macros.rs
1 parent 7685fcd commit 785fb40

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)