about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-03-24 14:50:45 -0700
committerAlex Crichton <alex@alexcrichton.com>2015-03-24 14:50:45 -0700
commit6da0b9dedbc975c3d9ae973216745de9dab535d2 (patch)
treefcbe032cc4032e47837ae9b2bff18ae1f3fd7a88
parent61063459bb934288254e714fa4a4e299f9850469 (diff)
parent37dc801fe630214e7b27899eb89626c8611ce5ff (diff)
downloadrust-6da0b9dedbc975c3d9ae973216745de9dab535d2.tar.gz
rust-6da0b9dedbc975c3d9ae973216745de9dab535d2.zip
rollup merge of #23629: liammonahan/master
Found a small typo on the Rust book "ownership" page.

Best,
Liam

r? @steveklabnik
-rw-r--r--src/doc/trpl/ownership.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/trpl/ownership.md b/src/doc/trpl/ownership.md
index 6aced23ede0..b851f19d22d 100644
--- a/src/doc/trpl/ownership.md
+++ b/src/doc/trpl/ownership.md
@@ -513,8 +513,8 @@ Otherwise, it is an error to elide an output lifetime.
 
 ### Examples
 
-Here are some examples of functions with elided lifetimes, and the version of
-what the elided lifetimes are expand to:
+Here are some examples of functions with elided lifetimes.  We've paired each
+example of an elided lifetime with its expanded form.
 
 ```{rust,ignore}
 fn print(s: &str); // elided