mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-10-01 12:20:39 +00:00
Typo (#415)
This commit is contained in:
parent
ab07733d66
commit
4ebaf18c27
@ -290,7 +290,7 @@ impl Lines {
|
|||||||
fn poll_flush(&mut self) -> Poll<(), io::Error> {
|
fn poll_flush(&mut self) -> Poll<(), io::Error> {
|
||||||
// As long as there is buffered data to write, try to write it.
|
// As long as there is buffered data to write, try to write it.
|
||||||
while !self.wr.is_empty() {
|
while !self.wr.is_empty() {
|
||||||
// Try to read some bytes from the socket
|
// Try to write some bytes to the socket
|
||||||
let n = try_ready!(self.socket.poll_write(&self.wr));
|
let n = try_ready!(self.socket.poll_write(&self.wr));
|
||||||
|
|
||||||
// As long as the wr is not empty, a successful write should
|
// As long as the wr is not empty, a successful write should
|
||||||
|
Loading…
x
Reference in New Issue
Block a user