refactor: minor formatting change

This commit is contained in:
Erica Marigold 2024-06-10 14:59:03 +05:30
parent a30380cba8
commit daedbf9899
No known key found for this signature in database
GPG key ID: 2768CC0C23D245D1

View file

@ -20,8 +20,8 @@ impl<R: AsyncRead + Unpin> ChildProcessReader<R> {
pub async fn read_to_end(&mut self) -> LuaResult<Vec<u8>> {
let mut buf = vec![];
self.0.read_to_end(&mut buf).await?;
Ok(buf)
}
}