about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2016-10-04 15:24:03 +0530
committerGitHub <noreply@github.com>2016-10-04 15:24:03 +0530
commit268521f58a0cf7545c2d7e72d60ba04538ec5ad8 (patch)
tree0853cce02841e5ae3eb38224cb8224ebc30859a2 /src/libcore
parent825e6b328790a94f29959517b40f8758896ed3f6 (diff)
parenta638580c0864eae433ce5f80a5634c49dd18f73d (diff)
Rollup merge of #36908 - GuillaumeGomez:default_doc, r=apasel422
fix typos

r? @steveklabnik
Diffstat (limited to 'src/libcore')
-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 f5f37be52de..c4fe68dfa43 100644
--- a/src/libcore/sync/atomic.rs
+++ b/src/libcore/sync/atomic.rs
@@ -95,7 +95,7 @@ pub struct AtomicBool {
 #[cfg(target_has_atomic = "8")]
 #[stable(feature = "rust1", since = "1.0.0")]
 impl Default for AtomicBool {
-    /// Creates an `AtomicBool` initialised as false.
+    /// Creates an `AtomicBool` initialized to `false`.
     fn default() -> Self {
         Self::new(false)
     }