Skip to content

Commit

Permalink
chore: fix word conjugations (#4894)
Browse files Browse the repository at this point in the history
* chore: fix word tenses

* hyphenate
  • Loading branch information
Lioness100 committed Aug 10, 2022
1 parent aea0947 commit 53cf021
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tokio/src/net/udp.rs
Expand Up @@ -1571,7 +1571,7 @@ impl UdpSocket {

/// Gets the value for the `SO_BINDTODEVICE` option on this socket
///
/// This value gets the socket binded device's interface name.
/// This value gets the socket-bound device's interface name.
#[cfg(any(target_os = "android", target_os = "fuchsia", target_os = "linux",))]
#[cfg_attr(
docsrs,
Expand Down
2 changes: 1 addition & 1 deletion tokio/src/runtime/thread_pool/queue.rs
Expand Up @@ -88,7 +88,7 @@ pub(crate) fn local<T: 'static>() -> (Steal<T>, Local<T>) {
}

impl<T> Local<T> {
/// Returns true if the queue has entries that can be stealed.
/// Returns true if the queue has entries that can be stolen.
pub(crate) fn is_stealable(&self) -> bool {
!self.inner.is_empty()
}
Expand Down

0 comments on commit 53cf021

Please sign in to comment.