about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/doc/book/unsafe.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/book/unsafe.md b/src/doc/book/unsafe.md
index 1b223365bd6..63e92316f37 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?