Skip to content

Commit e5d39f7

Browse files
committed
extra whitespace to render *-list as list
This worked fine on github but isn't displayed as a bulleted list on http://www.cglab.ca/~abeinges/blah/turpl/concurrency.html#send-and-sync
1 parent bb32315 commit e5d39f7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

concurrency.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ Almost all primitives are Send and Sync, and as a consequence pretty much
9797
all types you'll ever interact with are Send and Sync.
9898

9999
Major exceptions include:
100+
100101
* raw pointers are neither Send nor Sync (because they have no safety guards)
101102
* `UnsafeCell` isn't Sync (and therefore `Cell` and `RefCell` aren't)
102103
* `Rc` isn't Send or Sync (because the refcount is shared and unsynchronized)

0 commit comments

Comments
 (0)