Skip to content

Commit b7ab0f0

Browse files
Merge pull request #2587 from bbarker/patch-1
Minor clarification: types -> values in ch16-04
2 parents 889f2f4 + ab2540e commit b7ab0f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ch16-04-extensible-concurrency-sync-and-send.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ However, two concurrency concepts are embedded in the language: the
1111

1212
### Allowing Transference of Ownership Between Threads with `Send`
1313

14-
The `Send` marker trait indicates that ownership of the type implementing
14+
The `Send` marker trait indicates that ownership of values of the type implementing
1515
`Send` can be transferred between threads. Almost every Rust type is `Send`,
1616
but there are some exceptions, including `Rc<T>`: this cannot be `Send` because
1717
if you cloned an `Rc<T>` value and tried to transfer ownership of the clone to

0 commit comments

Comments
 (0)