diff --git a/src/application.rs b/src/application.rs
index 74cba347..e29de6c2 100644
--- a/src/application.rs
+++ b/src/application.rs
@@ -306,7 +306,7 @@ where
     /// # use actix_web::*;
     /// # fn main() {
     /// App::new()
-    ///     .filter(pred::Hoat("www.rust-lang.org"))
+    ///     .filter(pred::Host("www.rust-lang.org"))
     ///     .resource("/path", |r| r.f(|_| HttpResponse::Ok()))
     /// #      .finish();
     /// # }