From bb75621e3a62d14302c8f09239aab42132530446 Mon Sep 17 00:00:00 2001 From: rusch95 Date: Thu, 22 Nov 2018 19:20:35 -0500 Subject: [PATCH] Fix capitalization of Rust in races.md --- src/races.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/races.md b/src/races.md index c9b8c3d0..fa8fe874 100644 --- a/src/races.md +++ b/src/races.md @@ -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).