Update ch04-02-ownership.md

This commit is contained in:
Jonathan Turner 2016-07-08 15:58:10 -04:00 committed by GitHub
parent e83ec9a5c5
commit aa8e2305c4

View File

@ -15,8 +15,8 @@ with Rust, and the rules of the ownership system, the more you'll be able to nat
develop code that is both safe and efficient. Keep at it!
Once you understand ownership, you have a good foundation for understanding the
features that make Rust unique. Let's learn ownership by going through someexamples,
focusing on a very common data structure: strings.
features that make Rust unique. In this chapter, we'll learn ownership by going through
some examples, focusing on a very common data structure: strings.
## Variable binding scope