nomicon
nomicon copied to clipboard
Imprecision in "What Unsafe Rust Can Do"
In "What Unsafe Can Do", the fourth bullet point on the first list is "Mutate statics." What it should say is "Access or modify mutable statics", same as "Rust By Example"'s list: the compiler does not allow you to read a mutable static without an unsafe block.