Skip to content

Commit e94e24a

Browse files
authored
Merge pull request #457 from alimf17/patch-2
Update what-unsafe-does.md
2 parents 0ebdaca + 1d0b6c1 commit e94e24a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/what-unsafe-does.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The only things that are different in Unsafe Rust are that you can:
55
* Dereference raw pointers
66
* Call `unsafe` functions (including C functions, compiler intrinsics, and the raw allocator)
77
* Implement `unsafe` traits
8-
* Mutate statics
8+
* Access or modify mutable statics
99
* Access fields of `union`s
1010

1111
That's it. The reason these operations are relegated to Unsafe is that misusing

0 commit comments

Comments
 (0)