Skip to content

Commit

Permalink
Merge pull request #107 from rusch95/patch-1
Browse files Browse the repository at this point in the history
Fix capitalization of Rust in races.md
  • Loading branch information
Gankra authored Dec 11, 2018
2 parents b7eb4a0 + bb75621 commit bc9c1db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/races.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Safe Rust guarantees an absence of data races, which are defined as:
* one of them is unsynchronized

A data race has Undefined Behavior, and is therefore impossible to perform
in Safe Rust. Data races are *mostly* prevented through rust's ownership system:
in Safe Rust. Data races are *mostly* prevented through Rust's ownership system:
it's impossible to alias a mutable reference, so it's impossible to perform a
data race. Interior mutability makes this more complicated, which is largely why
we have the Send and Sync traits (see below).
Expand Down

0 comments on commit bc9c1db

Please sign in to comment.