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
commit 091b9811c8

View file

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