Skip to content

Commit fbfedc7

Browse files
authored
Rollup merge of #46234 - lucasem:core-marker-typo, r=frewsxcv
core::marker fix typo
2 parents 4c8cddb + a1ad729 commit fbfedc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/marker.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ pub trait Copy : Clone {
314314
///
315315
/// For cases when one does need thread-safe interior mutability,
316316
/// Rust provides [atomic data types], as well as explicit locking via
317-
/// [`sync::Mutex`][mutex] and [`sync::RWLock`][rwlock]. These types
317+
/// [`sync::Mutex`][mutex] and [`sync::RwLock`][rwlock]. These types
318318
/// ensure that any mutation cannot cause data races, hence the types
319319
/// are `Sync`. Likewise, [`sync::Arc`][arc] provides a thread-safe
320320
/// analogue of [`Rc`][rc].

0 commit comments

Comments
 (0)