about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTincan <tincann@users.noreply.github.com>2015-05-07 21:31:10 +0200
committerTincan <tincann@users.noreply.github.com>2015-05-07 21:31:10 +0200
commitae1b2f4bf3a5d9cee9227528b6df24decc20b977 (patch)
tree4952a0312c5520e6cd9f46201d3e0b52974dacf9
parent4d1e48e37610f421f30e098f2ae9ef98b85b66eb (diff)
downloadrust-ae1b2f4bf3a5d9cee9227528b6df24decc20b977.tar.gz
rust-ae1b2f4bf3a5d9cee9227528b6df24decc20b977.zip
Another typo
-rw-r--r--src/doc/trpl/ownership.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/ownership.md b/src/doc/trpl/ownership.md
index a70f03739f7..d994c177275 100644
--- a/src/doc/trpl/ownership.md
+++ b/src/doc/trpl/ownership.md
@@ -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) {