From 2b2e0064172148624469a299965836d72a29ddff Mon Sep 17 00:00:00 2001 From: Arthur Milchior Date: Sat, 24 Dec 2022 20:39:48 -0800 Subject: [PATCH] Typo Not sure of the intended meaning. At least the sentence is true and gramattically correct here --- src/concurrency/send-sync/examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/concurrency/send-sync/examples.md b/src/concurrency/send-sync/examples.md index adde3f3e..b7257ff1 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 that there are special lifetime considerations for the +* `*const T`, `*mut T`: Rust has special lifetime considerations for the pointer.