Skip to content

Commit 5cbfa12

Browse files
committed
Fix typo in std::sync::Once documentation
1 parent e37f859 commit 5cbfa12

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/libstd/sync/once.rs

-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,6 @@ impl Once {
218218
/// The closure `f` is yielded a structure which can be used to query the
219219
/// state of this `Once` (whether initialization has previously panicked or
220220
/// not).
221-
/// poisoned or not.
222221
#[unstable(feature = "once_poison", issue = "31688")]
223222
pub fn call_once_force<F>(&'static self, f: F) where F: FnOnce(&OnceState) {
224223
// same as above, just with a different parameter to `call_inner`.

0 commit comments

Comments
 (0)