about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorBen Striegel <ben.striegel@gmail.com>2013-01-29 22:14:23 -0500
committerBen Striegel <ben.striegel@gmail.com>2013-01-30 23:19:08 -0500
commit3e95a1357756db52ff7e6b6376f8c6ed59925971 (patch)
tree1c74faba4e7f65b2356fbaec32406cebb7a215b4 /src/libstd
parentb4f47eca2a99c1ead824e9cf85b12d9efc14eabb (diff)
RIMOV, round 8
find ./ -type f -name "*.rs" -exec sed -i "s/  \([a-zA-Z_]\+\): ~\[mut /
mut \1: ~\[/g" {} \;
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/rope.rs2
-rw-r--r--src/libstd/sha1.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/rope.rs b/src/libstd/rope.rs
index 977008e5995..6bd9c825d43 100644
--- a/src/libstd/rope.rs
+++ b/src/libstd/rope.rs
@@ -1158,7 +1158,7 @@ pub mod node {
         use core::vec;
 
         pub struct T {
-            stack: ~[mut @Node],
+            mut stack: ~[@Node],
             mut stackpos: int,
         }
 
diff --git a/src/libstd/sha1.rs b/src/libstd/sha1.rs
index c2599864c90..4a7e67f22b9 100644
--- a/src/libstd/sha1.rs
+++ b/src/libstd/sha1.rs
@@ -70,7 +70,7 @@ pub fn sha1() -> Sha1 {
         {h: ~[mut u32],
          mut len_low: u32,
          mut len_high: u32,
-         msg_block: ~[mut u8],
+         mut msg_block: ~[u8],
          mut msg_block_idx: uint,
          mut computed: bool,
          work_buf: @~[mut u32]};