about summary refs log tree commit diff
path: root/src/rustc/front/test.rs
diff options
context:
space:
mode:
authorGraydon Hoare <graydon@mozilla.com>2012-03-26 18:35:18 -0700
committerGraydon Hoare <graydon@mozilla.com>2012-03-26 18:35:18 -0700
commit6e6798c4e17d9ffa33c0573f329c772e9d96739e (patch)
tree64d4a01e7ed41092983f623b9b0fe0e5abc25200 /src/rustc/front/test.rs
parent34283ce7e840cbec4ec5704616614dbccdc08e81 (diff)
downloadrust-6e6798c4e17d9ffa33c0573f329c772e9d96739e.tar.gz
rust-6e6798c4e17d9ffa33c0573f329c772e9d96739e.zip
Bulk-edit mutable -> mut.
Diffstat (limited to 'src/rustc/front/test.rs')
-rw-r--r--src/rustc/front/test.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/rustc/front/test.rs b/src/rustc/front/test.rs
index 4af7e77bd87..d39936c10cc 100644
--- a/src/rustc/front/test.rs
+++ b/src/rustc/front/test.rs
@@ -19,8 +19,8 @@ type test = {span: span, path: [ast::ident], ignore: bool, should_fail: bool};
 type test_ctxt =
     @{sess: session::session,
       crate: @ast::crate,
-      mutable path: [ast::ident],
-      mutable testfns: [test]};
+      mut path: [ast::ident],
+      mut testfns: [test]};
 
 // Traverse the crate, collecting all the test functions, eliding any
 // existing main functions, and synthesizing a main test harness
@@ -39,8 +39,8 @@ fn generate_test_harness(sess: session::session,
     let cx: test_ctxt =
         @{sess: sess,
           crate: crate,
-          mutable path: [],
-          mutable testfns: []};
+          mut path: [],
+          mut testfns: []};
 
     let precursor =
         {fold_crate: fold::wrap(bind fold_crate(cx, _, _)),