1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-09-02 01:31:57 +02:00

various typos

This commit is contained in:
Nikolay Kim
2017-12-26 21:07:51 -08:00
parent 183bcd38f8
commit 0d21c2da22
3 changed files with 6 additions and 6 deletions

View File

@@ -122,7 +122,7 @@ from multiple threads consider using [actix](https://actix.github.io/actix/actix
## Response with custom type
To return custom type directly from handler function type needs to implement `Responder` trait.
To return custom type directly from handler function, type needs to implement `Responder` trait.
Let's create response for custom type that serializes to `application/json` response:
```rust