Rollup merge of #25188 - tincann:patch-1, r=steveklabnik

This commit is contained in:
Steve Klabnik 2015-05-10 16:44:22 -04:00
commit a7253780b2

View file

@ -174,7 +174,7 @@ fn foo(v: Vec<i32>) -> Vec<i32> {
}
```
This would get very tedius. It gets worse the more things we want to take ownership of:
This would get very tedious. It gets worse the more things we want to take ownership of:
```rust
fn foo(v1: Vec<i32>, v2: Vec<i32>) -> (Vec<i32>, Vec<i32>, i32) {