diff options
Diffstat (limited to 'src/doc/tutorial.md')
| -rw-r--r-- | src/doc/tutorial.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/doc/tutorial.md b/src/doc/tutorial.md index bfa1a3a2a29..09539e6d59d 100644 --- a/src/doc/tutorial.md +++ b/src/doc/tutorial.md @@ -2103,7 +2103,8 @@ a `&T` pointer. `MutexArc` is an example of a *sharable* type with internal muta These are types that do not contain any data whose lifetime is bound to a particular stack frame. These are types that do not contain any references, or types where the only contained references -have the `'static` lifetime. +have the `'static` lifetime. (For more on named lifetimes and their uses, +see the [references and lifetimes guide][lifetimes].) > ***Note:*** These two traits were referred to as 'kinds' in earlier > iterations of the language, and often still are. |
