about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-01-10 14:15:10 +0000
committerbors <bors@rust-lang.org>2015-01-10 14:15:10 +0000
commit2bb9b3f0be6530fa09e59008b5913fa8d940aa3e (patch)
tree1181f89da379dbcd3b1ad602d7b647caad2ed7f2 /src
parente912f13a9444a498ebf06ad09612965f9916a4cd (diff)
parent28723048a56a346dd23f06fa25cc174a195f4bc0 (diff)
downloadrust-2bb9b3f0be6530fa09e59008b5913fa8d940aa3e.tar.gz
rust-2bb9b3f0be6530fa09e59008b5913fa8d940aa3e.zip
Merge pull request #20818 from rgs1/fix-guide
Remove extra dangling period

Reviewed-by: alexcrichton
Diffstat (limited to 'src')
-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 4febec94135..946d0eee7df 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.