about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-03-31 17:44:45 -0400
committerSteve Klabnik <steve@steveklabnik.com>2015-03-31 17:44:45 -0400
commite48c7c61eb241fadc0835c7bdd041e042c43f622 (patch)
treefa71faadc4085b20ebf323ddd9e0b5aac2fef25e
parent80bf31dd514055177b22c3dc66836d39eb5b1648 (diff)
downloadrust-e48c7c61eb241fadc0835c7bdd041e042c43f622.tar.gz
rust-e48c7c61eb241fadc0835c7bdd041e042c43f622.zip
Fix spelling
-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 f4b5495ba63..223085cc40b 100644
--- a/src/doc/trpl/ownership.md
+++ b/src/doc/trpl/ownership.md
@@ -477,7 +477,7 @@ forbidden in item signatures to allow reasoning about the types just based in
 the item signature alone. However, for ergonomic reasons a very restricted
 secondary inference algorithm called “lifetime elision” applies in function
 signatures. It infers only based on the signature components themselves and not
-based on the body of the function, only infers lifetime paramters, and does
+based on the body of the function, only infers lifetime parameters, and does
 this with only three easily memorizable and unambiguous rules. This makes
 lifetime elision a shorthand for writing an item signature, while not hiding
 away the actual types involved as full local inference would if applied to it.