Merge pull request #372 from zhenya-1007/patch-1

Update lifetimes.md
pull/379/head
Eric Huss 2 years ago committed by GitHub
commit d880e6ac2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -55,7 +55,7 @@ likely desugar to the following:
let y: &'b i32 = &'b x; let y: &'b i32 = &'b x;
'c: { 'c: {
// ditto on '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)
} }
} }
} }

Loading…
Cancel
Save