From 60a1aa71478792ea21ffe9615f09e40f91c483a5 Mon Sep 17 00:00:00 2001 From: Andrew Horton Date: Mon, 28 Mar 2016 10:35:46 +0100 Subject: [PATCH] Update concurrency.md Typo "las time" -> "last time" --- src/doc/book/concurrency.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/doc/book/concurrency.md b/src/doc/book/concurrency.md index 991654b2b8d..87d551b68df 100644 --- a/src/doc/book/concurrency.md +++ b/src/doc/book/concurrency.md @@ -271,7 +271,7 @@ fn main() { } ``` -Similarly to las time, we use `clone()` to create a new owned handle. +Similarly to last time, we use `clone()` to create a new owned handle. This handle is then moved into the new thread. And... still gives us an error. @@ -282,7 +282,7 @@ And... still gives us an error. ^~~~ ``` -`Arc by default has immutable contents. It allows the _sharing_ of data +`Arc` by default has immutable contents. It allows the _sharing_ of data between threads, but shared mutable data is unsafe and when threads are involved can cause data races!