1
Fork 0

Rollup merge of #30821 - steveklabnik:gh30819, r=nikomatsakis

Fixes #30819
This commit is contained in:
Manish Goregaokar 2016-01-14 19:12:28 +05:30
commit 07aaca3a07

View file

@ -41,8 +41,8 @@ unsafe impl Scary for i32 {}
```
Its important to be able to explicitly delineate code that may have bugs that
cause big problems. If a Rust program segfaults, you can be sure its somewhere
in the sections marked `unsafe`.
cause big problems. If a Rust program segfaults, you can be sure the cause is
related to something marked `unsafe`.
# What does safe mean?