chore: fix word conjugations (#4894)

* chore: fix word tenses

* hyphenate
This commit is contained in:
Lioness100
2022-08-10 11:50:25 -05:00
committed by GitHub
parent aea09478e1
commit 53cf021b81
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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,
+1 -1
View File
@@ -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()
}