Skip to content

Commit b9a9559

Browse files
nikomatsakisbrson
authored andcommitted
correct lines over 78 chars
1 parent f3c68e7 commit b9a9559

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/comp/driver/rustc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ options:
264264
--test build test harness
265265
--gc garbage collect shared data (experimental/temporary)
266266
--stack-growth perform stack checks (experimental)
267-
--check-unsafe disallow unsafe actions in non-unsafe functions (temporary option)
267+
--check-unsafe disallow unsafe actions in non-unsafe functions
268268
269269
");
270270
}

src/comp/middle/typeck.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1528,7 +1528,9 @@ fn require_unsafe(sess: session::session, f_purity: ast::purity, sp: span) {
15281528
alt f_purity {
15291529
ast::unsafe_fn. { ret; }
15301530
_ {
1531-
sess.span_fatal(sp, "Found unsafe expression in safe function decl");
1531+
sess.span_fatal(
1532+
sp,
1533+
"Found unsafe expression in safe function decl");
15321534
}
15331535
}
15341536
}

0 commit comments

Comments
 (0)