Skip to content

Commit

Permalink
io: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nylonicious committed Aug 3, 2023
1 parent 92db7bf commit 710fe0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tokio/src/io/interest.rs
Expand Up @@ -131,7 +131,7 @@ impl Interest {
/// const RW_INTEREST: Interest = Interest::READABLE.add(Interest::WRITABLE);
///
/// let w_interest = RW_INTEREST.remove(Interest::READABLE).unwrap();
/// assert!(!w_interest.is_is_readable());
/// assert!(!w_interest.is_readable());
/// assert!(w_interest.is_writable());
///
/// // Removing all interests from the set returns `None`.
Expand Down

0 comments on commit 710fe0a

Please sign in to comment.