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
This commit is contained in:
Benjamin Herr 2015-06-23 14:23:23 +02:00
parent bb32315226
commit e5d39f7abe

View file

@ -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.
Major exceptions include:
* raw pointers are neither Send nor Sync (because they have no safety guards)
* `UnsafeCell` isn't Sync (and therefore `Cell` and `RefCell` aren't)
* `Rc` isn't Send or Sync (because the refcount is shared and unsynchronized)