Skip to content

Commit eb2343f

Browse files
committed
Be a bit more correct about segfault causality
Fixes #30819
1 parent d228cd3 commit eb2343f

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)