summaryrefslogtreecommitdiffstats
path: root/tokio/src/net/udp/split.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio/src/net/udp/split.rs')
-rw-r--r--tokio/src/net/udp/split.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokio/src/net/udp/split.rs b/tokio/src/net/udp/split.rs
index e8d434aa..8d87f1c7 100644
--- a/tokio/src/net/udp/split.rs
+++ b/tokio/src/net/udp/split.rs
@@ -42,7 +42,7 @@ pub(crate) fn split(socket: UdpSocket) -> (RecvHalf, SendHalf) {
(RecvHalf(recv), SendHalf(send))
}
-/// Error indicating two halves were not from the same socket, and thus could
+/// Error indicating that two halves were not from the same socket, and thus could
/// not be `reunite`d.
#[derive(Debug)]
pub struct ReuniteError(pub SendHalf, pub RecvHalf);