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
pull/10/head
Benjamin Herr 10 years ago committed by Manish Goregaokar
parent 33cda5741e
commit 5e06e32c89

@ -97,6 +97,7 @@ Almost all primitives are Send and Sync, and as a consequence pretty much
all types you'll ever interact with are Send and Sync. all types you'll ever interact with are Send and Sync.
Major exceptions include: Major exceptions include:
* raw pointers are neither Send nor Sync (because they have no safety guards) * raw pointers are neither Send nor Sync (because they have no safety guards)
* `UnsafeCell` isn't Sync (and therefore `Cell` and `RefCell` aren't) * `UnsafeCell` isn't Sync (and therefore `Cell` and `RefCell` aren't)
* `Rc` isn't Send or Sync (because the refcount is shared and unsynchronized) * `Rc` isn't Send or Sync (because the refcount is shared and unsynchronized)

Loading…
Cancel
Save