mirror of
https://github.com/actix/actix-web.git
synced 2024-11-20 08:31:09 +00:00
Merge pull request #184 from ivanovaleksey/patch-1
Fix route in App::resource example
This commit is contained in:
commit
5f3a7a6a52
1 changed files with 1 additions and 1 deletions
|
@ -314,7 +314,7 @@ where
|
|||
///
|
||||
/// fn main() {
|
||||
/// let app = App::new()
|
||||
/// .resource("/test", |r| {
|
||||
/// .resource("/users/{userid}/{friend}", |r| {
|
||||
/// r.get().f(|_| HttpResponse::Ok());
|
||||
/// r.head().f(|_| HttpResponse::MethodNotAllowed());
|
||||
/// });
|
||||
|
|
Loading…
Reference in a new issue