From 7fa496f9f839362e5886fa423bfcfd0f2c7ea910 Mon Sep 17 00:00:00 2001 From: Thibaud Martinez Date: Thu, 10 Jun 2021 21:31:46 +0200 Subject: [PATCH] Fix typo in guide: 'mechnisms' -> 'mechanisms'. --- site/guide/3-overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/guide/3-overview.md b/site/guide/3-overview.md index bf8cb0ed..dfe5c0c1 100644 --- a/site/guide/3-overview.md +++ b/site/guide/3-overview.md @@ -141,7 +141,7 @@ Rocket begins serving requests after being _launched_, which starts a multi-threaded asynchronous server and dispatches requests to matching routes as they arrive. -There are two mechnisms by which a `Rocket` can be launched. The first and +There are two mechanisms by which a `Rocket` can be launched. The first and preferred approach is via the `#[launch]` route attribute, which generates a `main` function that sets up an async runtime and starts the server. With `#[launch]`, our complete _Hello, world!_ application looks like: