about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2016-05-15 20:13:41 +0530
committerManish Goregaokar <manishsmail@gmail.com>2016-05-15 20:13:41 +0530
commit0238e29652d46e21b3aa81194de10dbad8f22594 (patch)
tree5c2940b57eedf84d8cc8180a7ca3c334a8ccd1ae /src/libstd
parent0ceb0730385a2c1e27cd0d266c812abade8b5c5a (diff)
parent5cbfa1285d7f3e6f93a5cd204ef9efbaefe222ed (diff)
downloadrust-0238e29652d46e21b3aa81194de10dbad8f22594.tar.gz
rust-0238e29652d46e21b3aa81194de10dbad8f22594.zip
Rollup merge of #33565 - Amanieu:once_doc, r=GuillaumeGomez
Fix typo in std::sync::Once documentation
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/sync/once.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstd/sync/once.rs b/src/libstd/sync/once.rs
index e228d236a3c..d8a4a69c73c 100644
--- a/src/libstd/sync/once.rs
+++ b/src/libstd/sync/once.rs
@@ -218,7 +218,6 @@ impl Once {
     /// The closure `f` is yielded a structure which can be used to query the
     /// state of this `Once` (whether initialization has previously panicked or
     /// not).
-    /// poisoned or not.
     #[unstable(feature = "once_poison", issue = "31688")]
     pub fn call_once_force<F>(&'static self, f: F) where F: FnOnce(&OnceState) {
         // same as above, just with a different parameter to `call_inner`.