Skip to content

Commit a1ad729

Browse files
committed
core::marker fix typo
1 parent eb44c89 commit a1ad729

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)