1
0
mirror of https://github.com/actix/actix-website synced 2024-11-24 00:41:07 +01:00

Merge pull request #10 from pickfire/patch-1

remove --bin from cargo new
This commit is contained in:
Nikolay Kim 2018-05-26 07:14:05 -07:00 committed by GitHub
commit 29afd3e001
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@ Lets 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
```