File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -57,14 +57,14 @@ parameters and `R` is the declared return type.
57
57
58
58
## Statics
59
59
60
- Statics within external blocks are declared in the same way as statics outside of external blocks,
60
+ Statics within external blocks are declared in the same way as [ statics] outside of external blocks,
61
61
except that they do not have an expression initializing their value.
62
62
It is ` unsafe ` to access a static item declared in an extern block, whether or
63
63
not it's mutable, because there is nothing guaranteeing that the bit pattern at the static's
64
64
memory is valid for the type it is declared with, since some arbitrary (e.g. C) code is in charge
65
65
of initializing the static.
66
66
67
- Extern statics can be either immutable or mutable just like statics outside of external blocks.
67
+ Extern statics can be either immutable or mutable just like [ statics] outside of external blocks.
68
68
An immutable static * must* be initialized before any Rust code is executed. It is not enough for
69
69
the static to be initialized before Rust code reads from it.
70
70
You can’t perform that action at this time.
0 commit comments