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

Fix grammar (#195)

This commit is contained in:
Daniel Quinn 2020-10-21 10:44:07 +01:00 committed by GitHub
parent c2ff01a27e
commit 876daa126b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ Add `actix-web` as a dependency of your project by adding the following to your
actix-web = "{{< actix-version "actix-web" >}}"
```
Request handlers use an async functions that accept zero or more parameters. These parameters can be
Request handlers use async functions that accept zero or more parameters. These parameters can be
extracted from a request (see `FromRequest` trait) and returns a type that can be converted into an
`HttpResponse` (see `Responder` trait):