From 4295b8da5c62a84cd8ee904defae5beebaf74868 Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Tue, 27 Dec 2022 17:17:38 +0100 Subject: [PATCH] Further refine language as per @QuineDot's idea --- src/concurrency/send-sync/examples.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/concurrency/send-sync/examples.md b/src/concurrency/send-sync/examples.md index b7257ff1..8c8f92ad 100644 --- a/src/concurrency/send-sync/examples.md +++ b/src/concurrency/send-sync/examples.md @@ -37,5 +37,5 @@ These types are not thread-safe and cannot be moved to other threads: * `Rc`: each `Rc` has a reference to an `RcBox`, which contains a non-atomic reference count. -* `*const T`, `*mut T`: Rust has special lifetime considerations for the - pointer. +* `*const T`, `*mut T`: Rust assumes raw pointers may have special + concurrency considerations.