From e5d39f7abe112cf7a4c73542841fa8c6784297cf Mon Sep 17 00:00:00 2001 From: Benjamin Herr Date: Tue, 23 Jun 2015 14:23:23 +0200 Subject: [PATCH] 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 --- concurrency.md | 1 + 1 file changed, 1 insertion(+) diff --git a/concurrency.md b/concurrency.md index a382e4edf54..fc04bd83811 100644 --- a/concurrency.md +++ b/concurrency.md @@ -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)