Resolve ambiguous documentation
See http://www.ietf.org/rfc/rfc2119.txt
This commit is contained in:
parent
acdd3b9f5a
commit
9eda98a587
@ -64,16 +64,16 @@ unsafe {
|
|||||||
|
|
||||||
[unsafe]: unsafe.html
|
[unsafe]: unsafe.html
|
||||||
|
|
||||||
Furthermore, any type stored in a `static` must be `Sync`, and may not have
|
Furthermore, any type stored in a `static` must be `Sync`, and must not have
|
||||||
a [`Drop`][drop] implementation.
|
a [`Drop`][drop] implementation.
|
||||||
|
|
||||||
[drop]: drop.html
|
[drop]: drop.html
|
||||||
|
|
||||||
# Initializing
|
# Initializing
|
||||||
|
|
||||||
Both `const` and `static` have requirements for giving them a value. They may
|
Both `const` and `static` have requirements for giving them a value. They must
|
||||||
only be given a value that’s a constant expression. In other words, you cannot
|
be given a value that’s a constant expression. In other words, you cannot use
|
||||||
use the result of a function call or anything similarly complex or at runtime.
|
the result of a function call or anything similarly complex or at runtime.
|
||||||
|
|
||||||
# Which construct should I use?
|
# Which construct should I use?
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user