We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c941723 commit 45a997aCopy full SHA for 45a997a
src/races.md
@@ -3,8 +3,8 @@
3
Safe Rust guarantees an absence of data races, which are defined as:
4
5
* two or more threads concurrently accessing a location of memory
6
-* one of them is a write
7
-* one of them is unsynchronized
+* one or more of them is a write
+* one or more of them is unsynchronized
8
9
A data race has Undefined Behavior, and is therefore impossible to perform
10
in Safe Rust. Data races are *mostly* prevented through Rust's ownership system:
0 commit comments