diff options
| author | Liam Monahan <liam@monahan.io> | 2015-03-22 23:54:59 -0400 |
|---|---|---|
| committer | Liam Monahan <liam@monahan.io> | 2015-03-23 00:00:00 -0400 |
| commit | 558c427cd3baac76d98c4c73cea15c4073ef5e93 (patch) | |
| tree | f7fe00cd5196a11023c26e0cc8b2a7cfd946a0c0 | |
| parent | b0aad7dd4fad8d7e2e2f877a511a637258949597 (diff) | |
| download | rust-558c427cd3baac76d98c4c73cea15c4073ef5e93.tar.gz rust-558c427cd3baac76d98c4c73cea15c4073ef5e93.zip | |
Fix a typo in the Rust Book ownership page.
| -rw-r--r-- | src/doc/trpl/ownership.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/trpl/ownership.md b/src/doc/trpl/ownership.md index 6aced23ede0..9a2eb458bc6 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, along with versions +of what the elided lifetimes expand to: ```{rust,ignore} fn print(s: &str); // elided |
