mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-28 09:44:08 +00:00
Merge pull request #381 from durka/patch-2
fix doc comment for if_let_chain!
This commit is contained in:
commit
d34a62b887
@ -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 New Issue
Block a user