File tree 2 files changed +3
-4
lines changed 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 53
53
//! # std::io::Result::Ok(()) });
54
54
//! ```
55
55
56
- #![ allow( clippy:: needless_pass_by_ref_mut) ]
57
56
#![ warn( missing_docs, missing_debug_implementations, rust_2018_idioms) ]
58
57
#![ doc(
59
58
html_favicon_url = "https://raw.githubusercontent.com/smol-rs/smol/master/assets/images/logo_fullsize_transparent.png"
Original file line number Diff line number Diff line change @@ -25,13 +25,13 @@ use std::task::{Context, Poll};
25
25
/// - Timer
26
26
///
27
27
/// This structure can be used to wait for any of these objects to become ready.
28
- ///
28
+ ///
29
29
/// ## Implementation
30
- ///
30
+ ///
31
31
/// The current implementation waits on the handle by registering it in the application-global
32
32
/// Win32 threadpool. However, in the futur it may be possible to migrate to an implementation
33
33
/// on Windows 10 that uses a mechanism similar to [`MsgWaitForMultipleObjectsEx`].
34
- ///
34
+ ///
35
35
/// [`MsgWaitForMultipleObjectsEx`]: https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-msgwaitformultipleobjectsex
36
36
///
37
37
/// ## Caveats
You can’t perform that action at this time.
0 commit comments