Skip to content

Commit

Permalink
Merge pull request #372 from zhenya-1007/patch-1
Browse files Browse the repository at this point in the history
Update lifetimes.md
  • Loading branch information
ehuss authored Aug 24, 2022
2 parents 8e6aa34 + 6018ecc commit d880e6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lifetimes.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ likely desugar to the following:
let y: &'b i32 = &'b x;
'c: {
// ditto on 'c
let z: &'c &'b i32 = &'c y;
let z: &'c &'b i32 = &'c y; // "a reference to a reference to an i32" (with lifetimes annotated)
}
}
}
Expand Down

0 comments on commit d880e6a

Please sign in to comment.