diff --git a/src/client/conn/http1.rs b/src/client/conn/http1.rs index d88817296a..4b7f93a6ba 100644 --- a/src/client/conn/http1.rs +++ b/src/client/conn/http1.rs @@ -89,7 +89,7 @@ where pub fn poll_without_shutdown(&mut self, cx: &mut task::Context<'_>) -> Poll> { self.inner .as_mut() - .expect("algready upgraded") + .expect("already upgraded") .poll_without_shutdown(cx) } }