about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorkennytm <kennytm@gmail.com>2017-11-26 15:01:36 +0800
committerGitHub <noreply@github.com>2017-11-26 15:01:36 +0800
commitfbfedc7e5a6738736efe0f271f5bf3ee776023a1 (patch)
tree2ff70348540a9aa3c008e30d6998d1acf054f7e2 /src/libcore
parent4c8cddb11b34021434d8d757e174096b10475840 (diff)
parenta1ad729a81cc29ee38b6a11c3bd2028c73fef10c (diff)
downloadrust-fbfedc7e5a6738736efe0f271f5bf3ee776023a1.tar.gz
rust-fbfedc7e5a6738736efe0f271f5bf3ee776023a1.zip
Rollup merge of #46234 - lucasem:core-marker-typo, r=frewsxcv
core::marker fix typo
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/marker.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/marker.rs b/src/libcore/marker.rs
index 0a8127f4ce4..0b0724b7a26 100644
--- a/src/libcore/marker.rs
+++ b/src/libcore/marker.rs
@@ -314,7 +314,7 @@ pub trait Copy : Clone {
 ///
 /// For cases when one does need thread-safe interior mutability,
 /// Rust provides [atomic data types], as well as explicit locking via
-/// [`sync::Mutex`][mutex] and [`sync::RWLock`][rwlock]. These types
+/// [`sync::Mutex`][mutex] and [`sync::RwLock`][rwlock]. These types
 /// ensure that any mutation cannot cause data races, hence the types
 /// are `Sync`. Likewise, [`sync::Arc`][arc] provides a thread-safe
 /// analogue of [`Rc`][rc].