mirror of
https://github.com/lune-org/lune.git
synced 2024-12-12 13:00:37 +00:00
Fix typo in process lib
This commit is contained in:
parent
cc3772680f
commit
a1c78c4ab9
1 changed files with 1 additions and 1 deletions
|
@ -59,6 +59,6 @@ where
|
||||||
}
|
}
|
||||||
|
|
||||||
fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
|
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)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue