correct lines over 78 chars

This commit is contained in:
Niko Matsakis 2011-10-10 16:24:22 -07:00 committed by Brian Anderson
parent f3c68e7238
commit b9a9559c91
2 changed files with 4 additions and 2 deletions

View File

@ -264,7 +264,7 @@ options:
--test build test harness
--gc garbage collect shared data (experimental/temporary)
--stack-growth perform stack checks (experimental)
--check-unsafe disallow unsafe actions in non-unsafe functions (temporary option)
--check-unsafe disallow unsafe actions in non-unsafe functions
");
}

View File

@ -1528,7 +1528,9 @@ fn require_unsafe(sess: session::session, f_purity: ast::purity, sp: span) {
alt f_purity {
ast::unsafe_fn. { ret; }
_ {
sess.span_fatal(sp, "Found unsafe expression in safe function decl");
sess.span_fatal(
sp,
"Found unsafe expression in safe function decl");
}
}
}