Rollup merge of #36908 - GuillaumeGomez:default_doc, r=apasel422

fix typos

r? @steveklabnik
This commit is contained in:
Manish Goregaokar 2016-10-04 15:24:03 +05:30 committed by GitHub
commit 268521f58a

View file

@ -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)
}