diff options
| author | bors <bors@rust-lang.org> | 2015-07-14 06:19:08 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-07-14 06:19:08 +0000 |
| commit | 137a699cc3a03e90f9e2aa04a7b163e7776706db (patch) | |
| tree | 2e4246044a27178aedefaf1271ee6ed8d4910882 | |
| parent | c8cddde207aa256527d30d83855e65dc2d59c2b6 (diff) | |
| parent | d673bdef0f6902bed833d66c9817930e4e4c83bd (diff) | |
Auto merge of #27015 - frankmcsherry:patch-1, r=steveklabnik
Grammatical update (and passive -> active, but I'm not sure if "Rust" is often used as a subject in the book; feel free to revert that part for style, but keep the subject-verb agreement) r? @steveklabnik
| -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 46af311acf3..5ddbdd6df00 100644 --- a/src/doc/trpl/ownership.md +++ b/src/doc/trpl/ownership.md @@ -42,8 +42,8 @@ With that in mind, let’s learn about ownership. # Ownership [Variable bindings][bindings] have a property in Rust: they ‘have ownership’ -of what they’re bound to. This means that when a binding goes out of scope, the -resource that they’re bound to are freed. For example: +of what they’re bound to. This means that when a binding goes out of scope, +Rust will free the bound resources. For example: ```rust fn foo() { |
