From 5d01655a1b909a955c0db0f41faa51f21b997f9a Mon Sep 17 00:00:00 2001 From: Alexander Stepchenko Date: Tue, 17 Jun 2025 21:16:00 +0300 Subject: [PATCH] docs: clarify subject-verb agreement (#616) --- docs/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index d401125..f03714d 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -32,7 +32,7 @@ Add `actix-web` as a dependency of your project by adding the following to your actix-web = "${vars.actixWebMajorVersion}"`} -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): +Request handlers use async functions that accept zero or more parameters. These parameters can be extracted from a request (see `FromRequest` trait), and the function returns a type that can be converted into an `HttpResponse` (see `Responder` trait): Replace the contents of `src/main.rs` with the following: