Rollup merge of #26144 - steveklabnik:static_doc_fix, r=alexcrichton

Fixes #25851

I am 99% sure this is true for all `static`s and not just `static mut`, yes?
This commit is contained in:
Steve Klabnik 2015-06-09 17:24:45 -04:00
commit 6b6b380fd1

View File

@ -64,7 +64,10 @@ unsafe {
[unsafe]: unsafe.html
Furthermore, any type stored in a `static` must be `Sync`.
Furthermore, any type stored in a `static` must be `Sync`, and may not have
a [`Drop`][drop] implementation.
[drop]: drop.html
# Initializing