diff --git a/src/doc/book/unsafe.md b/src/doc/book/unsafe.md index 1b223365bd63a..63e92316f370e 100644 --- a/src/doc/book/unsafe.md +++ b/src/doc/book/unsafe.md @@ -41,8 +41,8 @@ unsafe impl Scary for i32 {} ``` It’s 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 it’s 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?