Skip to content

Commit 40a9481

Browse files
committed
Limit line length to below 100 chars
1 parent 94434f1 commit 40a9481

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/libsyntax/parse/parser.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4617,11 +4617,13 @@ impl<'a> Parser<'a> {
46174617
_ => false,
46184618
};
46194619
if is_macro_rules {
4620-
self.diagnostic().struct_span_err(span, "can't qualify macro_rules invocation with `pub`")
4620+
self.diagnostic().struct_span_err(span, "can't qualify macro_rules \
4621+
invocation with `pub`")
46214622
.fileline_help(span, "did you mean #[macro_export]?")
46224623
.emit();
46234624
} else {
4624-
self.diagnostic().struct_span_err(span, "can't qualify macro invocation with `pub`")
4625+
self.diagnostic().struct_span_err(span, "can't qualify macro \
4626+
invocation with `pub`")
46254627
.fileline_help(span, "try adjusting the macro to put `pub` \
46264628
inside the invocation")
46274629
.emit();

0 commit comments

Comments
 (0)