diff --git a/src/doc/trpl/ownership.md b/src/doc/trpl/ownership.md index 46af311acf315..5ddbdd6df00b0 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() {