Commit 3597e8f 1 parent 95995e5 commit 3597e8f Copy full SHA for 3597e8f
File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -6,11 +6,11 @@ list. This includes code within `unsafe` blocks and `unsafe` functions.
6
6
does not change anything about the fact that Rust programs must never cause
7
7
undefined behavior.
8
8
9
- It is the programmer's responsibility when writing ` unsafe ` code to ensure that it is not
10
- possible to let ` safe ` code exhibit these behaviors. ` unsafe ` code that
11
- satisfies this property for any safe client is called * sound * ; if ` unsafe `
12
- code can be misused by safe code to exhibit undefined behavior, it is
13
- * unsound* .
9
+ It is the programmer's responsibility when writing ` unsafe ` code to ensure that
10
+ any safe code interacting with the ` unsafe ` code cannot trigger these
11
+ behaviors. ` unsafe ` code that satisfies this property for any safe client is
12
+ called * sound * ; if ` unsafe ` code can be misused by safe code to exhibit
13
+ undefined behavior, it is * unsound* .
14
14
15
15
<div class =" warning " >
16
16
You can’t perform that action at this time.
0 commit comments