Skip to content

Commit 531b7f2

Browse files
committed
Add some missing spaces.
1 parent 6d060bd commit 531b7f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libsyntax/parse/parser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3183,7 +3183,7 @@ impl<'a> Parser<'a> {
31833183
let mut err = self.sess.span_diagnostic
31843184
.struct_span_err(in_span, "missing `in` in `for` loop");
31853185
err.span_label(in_span, "expected `in` here");
3186-
err.span_suggestion_short(in_span, "try adding `in` here", "in".into());
3186+
err.span_suggestion_short(in_span, "try adding `in` here", " in ".into());
31873187
Err(err)
31883188
}
31893189
Err(mut expr_err) => {

0 commit comments

Comments
 (0)