From 28723048a56a346dd23f06fa25cc174a195f4bc0 Mon Sep 17 00:00:00 2001 From: Raul Gutierrez S Date: Fri, 9 Jan 2015 10:54:00 -0800 Subject: [PATCH] Remove extra dangling period Signed-off-by: Raul Gutierrez S --- src/doc/trpl/ownership.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/ownership.md b/src/doc/trpl/ownership.md index 3db4da73f932e..9e41b96061f77 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.