We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents eac89a3 + bb6b27a commit 0674321Copy full SHA for 0674321
src/races.md
@@ -7,7 +7,7 @@ Safe Rust guarantees an absence of data races, which are defined as:
7
* one or more of them is unsynchronized
8
9
A data race has Undefined Behavior, and is therefore impossible to perform in
10
-Safe Rust. Data races are *mostly* prevented through Rust's ownership system:
+Safe Rust. Data races are prevented *mostly* through Rust's ownership system alone:
11
it's impossible to alias a mutable reference, so it's impossible to perform a
12
data race. Interior mutability makes this more complicated, which is largely why
13
we have the Send and Sync traits (see the next section for more on this).
0 commit comments