Skip to content

Commit 137a699

Browse files
committed
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
2 parents c8cddde + d673bde commit 137a699

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/doc/trpl/ownership.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ With that in mind, let’s learn about ownership.
4242
# Ownership
4343

4444
[Variable bindings][bindings] have a property in Rust: they ‘have ownership’
45-
of what they’re bound to. This means that when a binding goes out of scope, the
46-
resource that they’re bound to are freed. For example:
45+
of what they’re bound to. This means that when a binding goes out of scope,
46+
Rust will free the bound resources. For example:
4747

4848
```rust
4949
fn foo() {

0 commit comments

Comments
 (0)