about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRaul Gutierrez S <rgs@itevenworks.net>2015-01-09 10:54:00 -0800
committerRaul Gutierrez S <rgs@itevenworks.net>2015-01-09 10:54:00 -0800
commit28723048a56a346dd23f06fa25cc174a195f4bc0 (patch)
tree1fa996edadaeaae150ff0181eea1ed0ffda0a5c1
parent2e2372c6c4a265992b0eb615ea9fdee4ab999143 (diff)
downloadrust-28723048a56a346dd23f06fa25cc174a195f4bc0.tar.gz
rust-28723048a56a346dd23f06fa25cc174a195f4bc0.zip
Remove extra dangling period
Signed-off-by: Raul Gutierrez S <rgs@itevenworks.net>
-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 3db4da73f93..9e41b96061f 100644
--- a/src/doc/trpl/ownership.md
+++ b/src/doc/trpl/ownership.md
@@ -488,7 +488,7 @@ Here are the three rules:
   parameter.
 
 * If there is exactly one input lifetime, elided or not, that lifetime is
-  assigned to all elided lifetimes in the return values of that function..
+  assigned to all elided lifetimes in the return values of that function.
 
 * If there are multiple input lifetimes, but one of them is `&self` or `&mut
   self`, the lifetime of `self` is assigned to all elided output lifetimes.