From 5cbfa1285d7f3e6f93a5cd204ef9efbaefe222ed Mon Sep 17 00:00:00 2001 From: Amanieu d'Antras Date: Wed, 11 May 2016 20:42:26 +0100 Subject: [PATCH] Fix typo in std::sync::Once documentation --- src/libstd/sync/once.rs | 1 - 1 file changed, 1 deletion(-) 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(&'static self, f: F) where F: FnOnce(&OnceState) { // same as above, just with a different parameter to `call_inner`.