Skip to content

Commit 48a140e

Browse files
committed
Merge pull request #20929 from laurilehmijoki/master
Ease parsing of an English sentence Reviewed-by: steveklabnik, steveklabnik
2 parents a28e9f2 + eabf208 commit 48a140e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/trpl/ownership.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ To fix this, we have to make sure that step four never happens after step
225225
three. The ownership system in Rust does this through a concept called
226226
*lifetimes*, which describe the scope that a reference is valid for.
227227

228-
Let's look at that function which borrows an `i32` again:
228+
Remember the function that borrowed an `i32`? Let's look at it again.
229229

230230
```rust
231231
fn add_one(num: &i32) -> i32 {

0 commit comments

Comments
 (0)