1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-24 07:53:00 +01:00

fix doc test

This commit is contained in:
Nikolay Kim 2018-06-07 20:22:23 -07:00
parent ce40ab307b
commit f9f2ed04ab

View File

@ -306,7 +306,7 @@ where
/// # use actix_web::*; /// # use actix_web::*;
/// # fn main() { /// # fn main() {
/// App::new() /// App::new()
/// .filter(pred::Hoat("www.rust-lang.org")) /// .filter(pred::Host("www.rust-lang.org"))
/// .resource("/path", |r| r.f(|_| HttpResponse::Ok())) /// .resource("/path", |r| r.f(|_| HttpResponse::Ok()))
/// # .finish(); /// # .finish();
/// # } /// # }