Skip to content

Commit d26f07d

Browse files
committed
Accept rustfmt churn
1 parent 939cd98 commit d26f07d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lex_via_rustc.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,8 @@ pub fn analyse(input: &str, edition: Edition) -> Analysis {
183183
Analysis::Rejects(Vec::new(), messages)
184184
}
185185
}
186-
}).unwrap_or(Analysis::CompilerError)
186+
})
187+
.unwrap_or(Analysis::CompilerError)
187188
}
188189

189190
/// Result of running lexical analysis on a string.

0 commit comments

Comments
 (0)