fix typos

This commit is contained in:
Guillaume Gomez 2016-10-02 14:45:49 +02:00
parent fe36876ce1
commit a638580c08

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