about summary refs log tree commit diff
path: root/src/libcore/sync
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-12-05 19:03:13 +0100
committerGitHub <noreply@github.com>2019-12-05 19:03:13 +0100
commit9a72b42a6d8a2d587a9db4f0073829de118e9997 (patch)
treeb3a413d827372233f4fd1ec66e5118fca01f6e80 /src/libcore/sync
parentd060dc8b7444cc8a4bce4f0b007ca52ee60f830e (diff)
parent1fa948f4ccf73aa0a0d903878693c685710cd764 (diff)
downloadrust-9a72b42a6d8a2d587a9db4f0073829de118e9997.tar.gz
rust-9a72b42a6d8a2d587a9db4f0073829de118e9997.zip
Rollup merge of #67005 - andrewbanchich:master, r=joshtriplett
capitalize Rust

Capitalize "Rust" in docs.
Diffstat (limited to 'src/libcore/sync')
-rw-r--r--src/libcore/sync/atomic.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/sync/atomic.rs b/src/libcore/sync/atomic.rs
index 251d49db062..6e1aac00c7b 100644
--- a/src/libcore/sync/atomic.rs
+++ b/src/libcore/sync/atomic.rs
@@ -27,7 +27,7 @@
 //!
 //! Atomic variables are safe to share between threads (they implement [`Sync`])
 //! but they do not themselves provide the mechanism for sharing and follow the
-//! [threading model](../../../std/thread/index.html#the-threading-model) of rust.
+//! [threading model](../../../std/thread/index.html#the-threading-model) of Rust.
 //! The most common way to share an atomic variable is to put it into an [`Arc`][arc] (an
 //! atomically-reference-counted shared pointer).
 //!