Merge pull request #107 from rusch95/patch-1

Fix capitalization of Rust in races.md
pull/111/head
Alexis Beingessner 6 years ago committed by GitHub
commit bc9c1db3ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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).

Loading…
Cancel
Save