From 876daa126b0c1070a2da5d76b8c2688cccf4d804 Mon Sep 17 00:00:00 2001 From: Daniel Quinn Date: Wed, 21 Oct 2020 10:44:07 +0100 Subject: [PATCH] Fix grammar (#195) --- content/docs/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/getting-started.md b/content/docs/getting-started.md index be72733..fb99ccc 100644 --- a/content/docs/getting-started.md +++ b/content/docs/getting-started.md @@ -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):