Merge pull request #381 from durka/patch-2

fix doc comment for if_let_chain!
This commit is contained in:
llogiq 2015-10-12 08:01:35 +02:00
commit d34a62b887

View file

@ -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