Skip to content

Commit 6c2aeef

Browse files
authored
Merge pull request #294 from JohnTitor/clarify-safe-vs-unsafe-relation
Clarify the Safe vs. Unsafe Rust relationship
2 parents b6808de + e43b811 commit 6c2aeef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/safe-unsafe-meaning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ of Safe Rust, the *soundness property*:
6363
The design of the safe/unsafe split means that there is an asymmetric trust
6464
relationship between Safe and Unsafe Rust. Safe Rust inherently has to
6565
trust that any Unsafe Rust it touches has been written correctly.
66-
On the other hand, Unsafe Rust has to be very careful about trusting Safe Rust.
66+
On the other hand, Unsafe Rust cannot trust Safe Rust without care.
6767

6868
As an example, Rust has the [`PartialOrd`] and [`Ord`] traits to differentiate
6969
between types which can "just" be compared, and those that provide a "total"

0 commit comments

Comments
 (0)