diff options
| author | Brian Anderson <banderson@mozilla.com> | 2014-01-07 21:31:37 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2014-01-07 21:31:37 -0800 |
| commit | fee8c1d2c7316949cb587a915fcf3b1f499eb8f7 (patch) | |
| tree | 295f55ae728c6a1875b73535caf724de37ea9b6a /doc/tutorial.md | |
| parent | 1fd4c3bb400b85a87cb415b4c0c9b3c573b66fd5 (diff) | |
| download | rust-fee8c1d2c7316949cb587a915fcf3b1f499eb8f7.tar.gz rust-fee8c1d2c7316949cb587a915fcf3b1f499eb8f7.zip | |
doc: Typos
Diffstat (limited to 'doc/tutorial.md')
| -rw-r--r-- | doc/tutorial.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tutorial.md b/doc/tutorial.md index 190d5df21ff..bb1ce35d873 100644 --- a/doc/tutorial.md +++ b/doc/tutorial.md @@ -1623,7 +1623,7 @@ defined in [`std::vec`] and [`std::str`]. # Ownership escape hatches -Ownership can cleanly describe tree-like data structures, and refercences provide non-owning pointers. However, more flexibility is often desired and Rust provides ways to escape from strict +Ownership can cleanly describe tree-like data structures, and references provide non-owning pointers. However, more flexibility is often desired and Rust provides ways to escape from strict single parent ownership. The standard library provides the `std::rc::Rc` pointer type to express *shared ownership* over a |
