Fix typo in process lib

This commit is contained in:
Filip Tibell 2023-04-20 08:19:44 +02:00
parent cc3772680f
commit a1c78c4ab9
No known key found for this signature in database

View file

@ -59,6 +59,6 @@ where
}
fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
self.project().writer.as_mut().poll_flush(cx)
self.project().writer.as_mut().poll_shutdown(cx)
}
}