Skip to content

Commit

Permalink
Merge pull request #3877 from seishun/patch-1
Browse files Browse the repository at this point in the history
Fix confusing sentence
  • Loading branch information
chriskrycho authored Apr 8, 2024
2 parents ff58b96 + 83fb659 commit 9209f5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ch10-03-lifetime-syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Here, `x` has the lifetime `'b`, which in this case is larger than `'a`. This
means `r` can reference `x` because Rust knows that the reference in `r` will
always be valid while `x` is valid.

Now that you know where the lifetimes of references are and how Rust analyzes
Now that you know what the lifetimes of references are and how Rust analyzes
lifetimes to ensure references will always be valid, let’s explore generic
lifetimes of parameters and return values in the context of functions.

Expand Down

0 comments on commit 9209f5e

Please sign in to comment.