From eb364a1d4192afc4183fe31716b546f7cace53e4 Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Mon, 5 Aug 2019 18:28:26 +0200 Subject: [PATCH] Fix plural to singular dependency This used to be plural because it used to be both actix and actix-web but now it's just actix-web. --- 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 21a6c44..03cae15 100644 --- a/content/docs/getting-started.md +++ b/content/docs/getting-started.md @@ -17,7 +17,7 @@ cargo new hello-world cd hello-world ``` -Now, add `actix-web` as dependencies of your project by ensuring your `Cargo.toml` +Now, add `actix-web` as a dependency of your project by ensuring your `Cargo.toml` contains the following: ```ini