1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-06-25 06:39:22 +02:00

simplify Handler trait

This commit is contained in:
Nikolay Kim
2017-11-29 15:07:49 -08:00
parent 27035c9454
commit d2eae3d5b3
5 changed files with 23 additions and 25 deletions

View File

@ -71,7 +71,7 @@ fn main() {
## Handler
A request handler can have several different forms.
A request handler can have different forms.
* Simple function that accepts `HttpRequest` and returns `HttpResponse` or any
type that can be converted into `HttpResponse`.