Skip to content

Commit

Permalink
Rollup merge of rust-lang#33565 - Amanieu:once_doc, r=GuillaumeGomez
Browse files Browse the repository at this point in the history
Fix typo in std::sync::Once documentation
  • Loading branch information
sanxiyn committed May 14, 2016
2 parents a4a7462 + 5cbfa12 commit ec48f47
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/libstd/sync/once.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down

0 comments on commit ec48f47

Please sign in to comment.