1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-24 08:22:59 +01:00

fix basic example in guide

This commit is contained in:
Nikolay Kim 2018-01-04 16:21:18 -08:00
parent 20d5c61c11
commit dea354d6d8

View File

@ -23,12 +23,12 @@ Actix web framework requies rust version 1.20 and up.
The fastest way to start experimenting with actix web is to clone the actix web repository
and run the included examples in the examples/ directory. The following set of
commands runs the `basic` example:
commands runs the `basics` example:
```bash
git clone https://github.com/actix/actix-web
cd actix-web
cargo run --example basic
cd actix-web/examples/basics
cargo run
```
Check [examples/](https://github.com/actix/actix-web/tree/master/examples) directory for more examples.