Format with rustfmt 2019-03-27
diff --git a/src/expr.rs b/src/expr.rs
index bd67ceb..a5f0e3a 100644
--- a/src/expr.rs
+++ b/src/expr.rs
@@ -2014,7 +2014,6 @@
}
}
-
#[cfg(feature = "full")]
impl Parse for ExprWhile {
fn parse(input: ParseStream) -> Result<Self> {
@@ -2416,8 +2415,8 @@
|| ahead.peek(Token![auto]) && ahead.peek2(Token![trait])
|| ahead.peek(Token![trait])
|| ahead.peek(Token![default])
- && (ahead.peek2(Token![unsafe]) || ahead.peek2(Token![impl ]))
- || ahead.peek(Token![impl ])
+ && (ahead.peek2(Token![unsafe]) || ahead.peek2(Token![impl]))
+ || ahead.peek(Token![impl])
|| ahead.peek(Token![macro])
{
input.parse().map(Stmt::Item)