Rollup merge of #76033 - camelid:patch-7, r=Dylan-DPC

Add missing hyphen

reference counted pointer -> reference-counted pointer

@rustbot modify labels: T-doc
This commit is contained in:
Aleksey Kladov 2020-08-31 12:51:45 +02:00 committed by GitHub
commit 6ce3243995
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -111,7 +111,7 @@ macro_rules! acquire {
///
/// # Cloning references
///
/// Creating a new reference from an existing reference counted pointer is done using the
/// Creating a new reference from an existing reference-counted pointer is done using the
/// `Clone` trait implemented for [`Arc<T>`][Arc] and [`Weak<T>`][Weak].
///
/// ```