Skip to content

Commit 7fe1969

Browse files
committed
Clippy + fmt
Signed-off-by: John Nunley <[email protected]>
1 parent de69b64 commit 7fe1969

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@
5353
//! # std::io::Result::Ok(()) });
5454
//! ```
5555
56-
#![allow(clippy::needless_pass_by_ref_mut)]
5756
#![warn(missing_docs, missing_debug_implementations, rust_2018_idioms)]
5857
#![doc(
5958
html_favicon_url = "https://raw.githubusercontent.com/smol-rs/smol/master/assets/images/logo_fullsize_transparent.png"

src/os/windows.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ use std::task::{Context, Poll};
2525
/// - Timer
2626
///
2727
/// This structure can be used to wait for any of these objects to become ready.
28-
///
28+
///
2929
/// ## Implementation
30-
///
30+
///
3131
/// The current implementation waits on the handle by registering it in the application-global
3232
/// Win32 threadpool. However, in the futur it may be possible to migrate to an implementation
3333
/// on Windows 10 that uses a mechanism similar to [`MsgWaitForMultipleObjectsEx`].
34-
///
34+
///
3535
/// [`MsgWaitForMultipleObjectsEx`]: https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-msgwaitformultipleobjectsex
3636
///
3737
/// ## Caveats

0 commit comments

Comments
 (0)