Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix word conjugations #4894

Merged
merged 2 commits into from Aug 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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