Skip to content

Commit bc9c1db

Browse files
authored
Merge pull request #107 from rusch95/patch-1
Fix capitalization of Rust in races.md
2 parents b7eb4a0 + bb75621 commit bc9c1db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/races.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Safe Rust guarantees an absence of data races, which are defined as:
77
* one of them is unsynchronized
88

99
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:
10+
in Safe Rust. Data races are *mostly* prevented through Rust's ownership system:
1111
it's impossible to alias a mutable reference, so it's impossible to perform a
1212
data race. Interior mutability makes this more complicated, which is largely why
1313
we have the Send and Sync traits (see below).

0 commit comments

Comments
 (0)