summaryrefslogtreecommitdiffstats
path: root/src/doc/nomicon/src/lifetimes.md
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/doc/nomicon/src/lifetimes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/nomicon/src/lifetimes.md b/src/doc/nomicon/src/lifetimes.md
index ef86b7b53..f55ea8c2a 100644
--- a/src/doc/nomicon/src/lifetimes.md
+++ b/src/doc/nomicon/src/lifetimes.md
@@ -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)
}
}
}