about summary refs log tree commit diff
path: root/src/rustdoc/path_pass.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/rustdoc/path_pass.rs')
-rw-r--r--src/rustdoc/path_pass.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rustdoc/path_pass.rs b/src/rustdoc/path_pass.rs
index 9aa88774822..e92845712a2 100644
--- a/src/rustdoc/path_pass.rs
+++ b/src/rustdoc/path_pass.rs
@@ -11,13 +11,13 @@ fn mk_pass() -> pass {
 
 type ctxt = {
     srv: astsrv::srv,
-    mutable path: [str]
+    mut path: [str]
 };
 
 fn run(srv: astsrv::srv, doc: doc::doc) -> doc::doc {
     let ctxt = {
         srv: srv,
-        mutable path: []
+        mut path: []
     };
     let fold = fold::fold({
         fold_item: fold_item,