mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-18 02:38:28 +00:00
fix doc comment for if_let_chain!
This commit is contained in:
parent
0bb4cbe859
commit
3632b93d7a
1 changed files with 2 additions and 2 deletions
|
@ -20,9 +20,9 @@ pub const LL_PATH: [&'static str; 3] = ["collections", "linked_list", "Linke
|
|||
///
|
||||
/// if_let_chain! {
|
||||
/// [
|
||||
/// Some(y) = x,
|
||||
/// let Some(y) = x,
|
||||
/// y.len() == 2,
|
||||
/// Some(z) = y,
|
||||
/// let Some(z) = y,
|
||||
/// ],
|
||||
/// {
|
||||
/// block
|
||||
|
|
Loading…
Reference in a new issue