about summary refs log tree commit diff
path: root/src/libstd/sync/once.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2017-08-17 17:10:25 +0000
committerbors <bors@rust-lang.org>2017-08-17 17:10:25 +0000
commit59ccba995de202fb9d9a8d795d2770fb2d199db0 (patch)
treec3fb8fc436dc758eb7b2d7c6ddf438225671c3c0 /src/libstd/sync/once.rs
parentdd39ecf368a3cdb937e129f36a2a342d0c9358f0 (diff)
parent235fb23e553db0af9ac6e7d134a9f5a35bdf6619 (diff)
downloadrust-59ccba995de202fb9d9a8d795d2770fb2d199db0.tar.gz
rust-59ccba995de202fb9d9a8d795d2770fb2d199db0.zip
Auto merge of #43939 - frewsxcv:rollup, r=frewsxcv
Rollup of 9 pull requests

- Successful merges: #43891, #43905, #43912, #43914, #43915, #43916, #43920, #43928, #43930
- Failed merges:
Diffstat (limited to 'src/libstd/sync/once.rs')
-rw-r--r--src/libstd/sync/once.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sync/once.rs b/src/libstd/sync/once.rs
index bb18fe95a9d..403685a4b8e 100644
--- a/src/libstd/sync/once.rs
+++ b/src/libstd/sync/once.rs
@@ -387,7 +387,7 @@ impl Drop for Finish {
 impl OnceState {
     /// Returns whether the associated [`Once`] has been poisoned.
     ///
-    /// Once an initalization routine for a [`Once`] has panicked it will forever
+    /// Once an initialization routine for a [`Once`] has panicked it will forever
     /// indicate to future forced initialization routines that it is poisoned.
     ///
     /// [`Once`]: struct.Once.html