From 19746a3e0fdd7ab1c28d3a91d2ce4ca75cafbce0 Mon Sep 17 00:00:00 2001 From: Ivan Tham Date: Sat, 26 May 2018 15:31:13 +0800 Subject: [PATCH] remove --bin from cargo new `cargo new` defaults to `--bin` since cargo 0.26 --- 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 bb68766..0abbc43 100644 --- a/content/docs/getting-started.md +++ b/content/docs/getting-started.md @@ -13,7 +13,7 @@ Let’s write our first actix web application! Start by creating a new binary-based Cargo project and changing into the new directory: ```bash -cargo new hello-world --bin +cargo new hello-world cd hello-world ```