1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-09-08 20:58:26 +00:00

fix Scope::handler doc test

This commit is contained in:
Nikolay Kim 2018-09-02 08:51:26 -07:00
parent 968c81e267
commit b7a73e0a4f

View file

@ -304,7 +304,7 @@ impl<S: 'static> Scope<S> {
///
/// fn main() {
/// let app = App::new().scope("/scope-prefix", |scope| {
/// handler("/app", |req: &HttpRequest| match *req.method() {
/// scope.handler("/app", |req: &HttpRequest| match *req.method() {
/// http::Method::GET => HttpResponse::Ok(),
/// http::Method::POST => HttpResponse::MethodNotAllowed(),
/// _ => HttpResponse::NotFound(),