fix doc comment for if_let_chain!

This commit is contained in:
Alex Burka 2015-10-12 01:54:44 -04:00
parent 0bb4cbe859
commit 3632b93d7a

View file

@ -20,9 +20,9 @@ pub const LL_PATH: [&'static str; 3] = ["collections", "linked_list", "Linke
/// ///
/// if_let_chain! { /// if_let_chain! {
/// [ /// [
/// Some(y) = x, /// let Some(y) = x,
/// y.len() == 2, /// y.len() == 2,
/// Some(z) = y, /// let Some(z) = y,
/// ], /// ],
/// { /// {
/// block /// block