auto merge of #18253 : steveklabnik/rust/small_doc_fixes, r=huonw

All these stars aren't needed anymore.
This commit is contained in:
bors
2014-10-23 16:57:24 +00:00

View File

@@ -471,7 +471,7 @@ fn main() {
spawn(proc() { spawn(proc() {
let mut array = number.lock(); let mut array = number.lock();
(*(*array).get_mut(i)) += 1; (*array)[i] += 1;
println!("numbers[{}] is {}", i, (*array)[i]); println!("numbers[{}] is {}", i, (*array)[i]);
}); });