]> git.lizzy.rs Git - rust.git/commitdiff
Change placement of `[Unstable]` marker in RFC 1623 docs.
authorChris Krycho <chris@chriskrycho.com>
Sat, 28 Jan 2017 17:45:54 +0000 (12:45 -0500)
committerChris Krycho <chris@chriskrycho.com>
Sat, 28 Jan 2017 17:45:54 +0000 (12:45 -0500)
src/doc/reference.md

index c6fc2ea40590c825af07db5aa105d727ceec99b2..dd3ccb82211f552d7ae98bd06f4f52cb9072122a 100644 (file)
@@ -1356,12 +1356,12 @@ unsafe fn bump_levels_unsafe2() -> u32 {
 Mutable statics have the same restrictions as normal statics, except that the
 type of the value is not required to ascribe to `Sync`.
 
-#### `'static` lifetime elision [unstable]
+#### `'static` lifetime elision
 
-Both constant and static declarations of reference types have *implicit*
-`'static` lifetimes unless an explicit lifetime is specified. As such, the
-constant declarations involving `'static` above may be written without the
-lifetimes. Returning to our previous example:
+[Unstable] Both constant and static declarations of reference types have
+*implicit* `'static` lifetimes unless an explicit lifetime is specified. As
+such, the constant declarations involving `'static` above may be written
+without the lifetimes. Returning to our previous example:
 
 ```rust
 #[feature(static_in_const)]