Skip to content

Commit ae1b2f4

Browse files
committed
Another typo
1 parent 4d1e48e commit ae1b2f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/trpl/ownership.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ fn foo(v: Vec<i32>) -> Vec<i32> {
173173
}
174174
```
175175

176-
This would get very tedius. It gets worse the more things we want to take ownership of:
176+
This would get very tedious. It gets worse the more things we want to take ownership of:
177177

178178
```rust
179179
fn foo(v1: Vec<i32>, v2: Vec<i32>) -> (Vec<i32>, Vec<i32>, i32) {

0 commit comments

Comments
 (0)