We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f738dc1 commit 60a1aa7Copy full SHA for 60a1aa7
src/doc/book/concurrency.md
@@ -271,7 +271,7 @@ fn main() {
271
}
272
```
273
274
-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.
275
This handle is then moved into the new thread.
276
277
And... still gives us an error.
@@ -282,7 +282,7 @@ And... still gives us an error.
282
^~~~
283
284
285
-`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
286
between threads, but shared mutable data is unsafe and when threads are
287
involved can cause data races!
288
0 commit comments