From dea354d6d889bd4ffa1852fea03fa230bd32a697 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Thu, 4 Jan 2018 16:21:18 -0800 Subject: [PATCH] fix basic example in guide --- guide/src/qs_1.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guide/src/qs_1.md b/guide/src/qs_1.md index 3f629bd1..8d2ee83c 100644 --- a/guide/src/qs_1.md +++ b/guide/src/qs_1.md @@ -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.