1
Fork 0

Add missing hyphen

reference counted pointer -> reference-counted pointer
This commit is contained in:
Camelid 2020-08-28 09:29:06 -07:00 committed by GitHub
parent 3e3c552605
commit 7be129e53a
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].
///
/// ```