Skip to content

Commit

Permalink
Merge pull request #20929 from laurilehmijoki/master
Browse files Browse the repository at this point in the history
Ease parsing of an English sentence

Reviewed-by: steveklabnik, steveklabnik
  • Loading branch information
bors committed Jan 14, 2015
2 parents e5963d1 + eabf208 commit 61d4f6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/trpl/ownership.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,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 {
Expand Down

0 comments on commit 61d4f6a

Please sign in to comment.