Skip to content

Commit 07aaca3

Browse files
committed
Rollup merge of rust-lang#30821 - steveklabnik:gh30819, r=nikomatsakis
Fixes rust-lang#30819
2 parents 5b3a75f + eb2343f commit 07aaca3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/doc/book/unsafe.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ unsafe impl Scary for i32 {}
4141
```
4242

4343
It’s important to be able to explicitly delineate code that may have bugs that
44-
cause big problems. If a Rust program segfaults, you can be sure it’s somewhere
45-
in the sections marked `unsafe`.
44+
cause big problems. If a Rust program segfaults, you can be sure the cause is
45+
related to something marked `unsafe`.
4646

4747
# What does ‘safe’ mean?
4848

0 commit comments

Comments
 (0)