two minor fixes

This commit is contained in:
Simon Kern 2015-05-08 00:42:10 +02:00
parent f0ac7e04e6
commit 2213898c19

View file

@ -3,7 +3,7 @@
This guide is one of three presenting Rusts ownership system. This is one of
Rusts most unique and compelling features, with which Rust developers should
become quite acquainted. Ownership is how Rust achieves its largest goal,
memory safety. The there are a few distinct concepts, each with its own
memory safety. There are a few distinct concepts, each with its own
chapter:
* ownership, which youre reading now.
@ -59,6 +59,7 @@ deterministically, at the end of the scope.
[vect]: ../std/vec/struct.Vec.html
[heap]: the-stack-and-the-heap.html
[bindings]: variable-bindings.html
# Move semantics