Skip to content

Commit d880e6a

Browse files
authored
Merge pull request #372 from zhenya-1007/patch-1
Update lifetimes.md
2 parents 8e6aa34 + 6018ecc commit d880e6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lifetimes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ likely desugar to the following:
5555
let y: &'b i32 = &'b x;
5656
'c: {
5757
// ditto on 'c
58-
let z: &'c &'b i32 = &'c y;
58+
let z: &'c &'b i32 = &'c y; // "a reference to a reference to an i32" (with lifetimes annotated)
5959
}
6060
}
6161
}

0 commit comments

Comments
 (0)