File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 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.
66does not change anything about the fact that Rust programs must never cause
77undefined behavior.
88
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* .
1414
1515<div class =" warning " >
1616
You can’t perform that action at this time.
0 commit comments