Fix typo in std::sync::Once documentation

This commit is contained in:
Amanieu d'Antras 2016-05-11 20:42:26 +01:00
parent e37f8593e4
commit 5cbfa1285d

View File

@ -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`.