Be a bit more correct about segfault causality

Fixes #30819
This commit is contained in:
Steve Klabnik 2016-01-11 08:48:35 -05:00
parent d228cd3964
commit eb2343f25b

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?