From 3a571e036a475bbed3faad53903c8c6309038488 Mon Sep 17 00:00:00 2001 From: Gabriel Goller Date: Thu, 5 Nov 2020 14:50:03 +0100 Subject: [PATCH] Fixed typo (#200) --- 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 fb99ccc..12c6d37 100644 --- a/content/docs/getting-started.md +++ b/content/docs/getting-started.md @@ -40,7 +40,7 @@ macros. These allow you to specify the method and path that the handler should r see below how to register the other route that does not use a routing macro. Next, create an `App` instance and register the request handlers. Use `App::service` for the -handlers using routing macros and `App::route` for manually routed handlers, declaring the a path +handlers using routing macros and `App::route` for manually routed handlers, declaring the path and method. Finally, the app is started inside an `HttpServer` which will serve incoming requests using your `App` as an "application factory".