Skip to content

Commit 268521f

Browse files
authored
Rollup merge of rust-lang#36908 - GuillaumeGomez:default_doc, r=apasel422
fix typos r? @steveklabnik
2 parents 825e6b3 + a638580 commit 268521f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/sync/atomic.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ pub struct AtomicBool {
9595
#[cfg(target_has_atomic = "8")]
9696
#[stable(feature = "rust1", since = "1.0.0")]
9797
impl Default for AtomicBool {
98-
/// Creates an `AtomicBool` initialised as false.
98+
/// Creates an `AtomicBool` initialized to `false`.
9999
fn default() -> Self {
100100
Self::new(false)
101101
}

0 commit comments

Comments
 (0)