Clippy fixes

This commit is contained in:
Nikolay Kim 2022-02-11 17:25:18 +06:00
parent aab6eef780
commit cb4dbe0131
8 changed files with 9 additions and 9 deletions

View file

@ -41,7 +41,7 @@ where
type Output = T;
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<T> {
(&mut self.f)(cx)
(self.f)(cx)
}
}