Another typo

This commit is contained in:
Tincan 2015-05-07 21:31:10 +02:00
parent 4d1e48e376
commit ae1b2f4bf3

View File

@ -173,7 +173,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) {