]> git.lizzy.rs Git - rust.git/commitdiff
correct lines over 78 chars
authorNiko Matsakis <niko@alum.mit.edu>
Mon, 10 Oct 2011 23:24:22 +0000 (16:24 -0700)
committerBrian Anderson <banderson@mozilla.com>
Wed, 12 Oct 2011 21:39:34 +0000 (14:39 -0700)
src/comp/driver/rustc.rs
src/comp/middle/typeck.rs

index be09a59074156bcda2f47b30975812448dd6f82b..76819b9960544657815581858da1ea07c96dc306 100644 (file)
@@ -264,7 +264,7 @@ fn usage(argv0: str) {
     --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
 
 ");
 }
index 26dcb5074da0c0e94a7b925b5bdda56ff905fb53..cd21c022f4cfca9a6e28d1742eac8ea6eca33b3b 100644 (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");
           }
         }
     }