Skip to content

Commit 0a72666

Browse files
authored
Fix typo in comments (#24)
1 parent 4019df4 commit 0a72666

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ macro_rules! __if_chain {
210210
$($other)+
211211
}
212212
};
213-
// `if let` with multiple matterns and a fallback (if present)
213+
// `if let` with multiple patterns and a fallback (if present)
214214
(@expand { $($other:tt)* } if let $pat1:pat | $($pat:pat)|+ = $expr:expr; $($tt:tt)+) => {
215215
match $expr {
216216
$pat1 | $($pat)|+ => { __if_chain! { @expand { $($other)* } $($tt)+ } },

0 commit comments

Comments
 (0)