Skip to content

Commit 1cb123a

Browse files
author
boats
committed
Share types are Rc and Arc.
1 parent d9f70b3 commit 1cb123a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

text/0000-pin_and_move.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ construct.
8080
- **Share** implies that this type has shared ownership over the data which it
8181
dereferences to. It implies `Clone`, and every type it is `Clone`d it must
8282
continue to refer to the same data; it cannot perform deep clones of that
83-
data. Examples of `Share`
83+
data. Examples of `Share` types are `Rc<T>` and `Arc<T>`.
8484
8585
These traits are mutually exclusive - it would be a logic error to implement
8686
both of them for a single type. We retain the liberty to assume that no type

0 commit comments

Comments
 (0)