1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-12-19 06:36:36 +00:00

fix doc test

This commit is contained in:
Nikolay Kim 2018-06-07 20:22:50 -07:00
parent 6c7ac7fc22
commit 7f1844e541

View file

@ -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();
/// # }