1
Fork 0

Update concurrency.md

Typo "las time" -> "last time"
This commit is contained in:
Andrew Horton 2016-03-28 10:35:46 +01:00
parent f738dc1fe4
commit 60a1aa7147

View file

@ -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. This handle is then moved into the new thread.
And... still gives us an error. And... still gives us an error.
@ -282,7 +282,7 @@ And... still gives us an error.
^~~~ ^~~~
``` ```
`Arc<T> by default has immutable contents. It allows the _sharing_ of data `Arc<T>` by default has immutable contents. It allows the _sharing_ of data
between threads, but shared mutable data is unsafe and when threads are between threads, but shared mutable data is unsafe and when threads are
involved can cause data races! involved can cause data races!