1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-06-26 22:07:42 +02:00

better naming

This commit is contained in:
Nikolay Kim
2019-02-01 14:48:09 -08:00
parent cedba24a36
commit 132be0baa1
2 changed files with 6 additions and 6 deletions

View File

@ -47,7 +47,7 @@ where
type Future = FromErrFuture<A, E, Request>;
fn poll_ready(&mut self) -> Poll<(), E> {
Ok(self.service.poll_ready().map_err(E::from)?)
self.service.poll_ready().map_err(E::from)
}
fn call(&mut self, req: Request) -> Self::Future {