]> git.lizzy.rs Git - rust.git/blobdiff - src/doc/trpl/ownership.md
rollup merge of #21029: steveklabnik/gh19924
[rust.git] / src / doc / trpl / ownership.md
index 78e28667470f652ac627ff15d189243d2b0f7b7d..011746cf5b11799266927450c787111e970ad9c6 100644 (file)
@@ -241,7 +241,7 @@ To fix this, we have to make sure that step four never happens after step
 three. The ownership system in Rust does this through a concept called
 *lifetimes*, which describe the scope that a reference is valid for.
 
-Let's look at that function which borrows an `i32` again:
+Remember the function that borrowed an `i32`? Let's look at it again.
 
 ```rust
 fn add_one(num: &i32) -> i32 {