Skip to content

Commit 3cf3ed7

Browse files
committed
Separate the description on different lines
1 parent 6a90f14 commit 3cf3ed7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/librustc_lint/builtin.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,9 @@ impl UnsafeCode {
229229
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for UnsafeCode {
230230
fn check_attribute(&mut self, cx: &LateContext, attr: &ast::Attribute) {
231231
if attr.check_name("allow_internal_unsafe") {
232-
self.report_unsafe(cx, attr.span, "`allow_internal_unsafe` allows defining macros using unsafe without triggering the `unsafe_code` lint at their call site");
232+
self.report_unsafe(cx, attr.span, "`allow_internal_unsafe` allows defining \
233+
macros using unsafe without triggering \
234+
the `unsafe_code` lint at their call site");
233235
}
234236
}
235237

0 commit comments

Comments
 (0)