From 26413d1d61cc4ecc46ee8c16417fcdade1a1ddc5 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Mon, 27 Nov 2017 19:56:14 -0800 Subject: [PATCH] add link to guide --- README.md | 1 + guide/src/qs_2.md | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/README.md b/README.md index d6cfb95a3..892648a6e 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@ Asynchronous web framework for [Actix](https://github.com/actix/actix). +* [User Guide](http://actix.github.io/actix-web/guide/) * [API Documentation (Development)](http://actix.github.io/actix-web/actix_web/) * [API Documentation (Releases)](https://docs.rs/actix-web/) * Cargo package: [actix-web](https://crates.io/crates/actix-web) diff --git a/guide/src/qs_2.md b/guide/src/qs_2.md index 823f56941..d337038d6 100644 --- a/guide/src/qs_2.md +++ b/guide/src/qs_2.md @@ -83,3 +83,8 @@ fn main() { let _ = sys.run(); } ``` + +Note on `actix` crate. Actix web framework is built on top of actix actor library. +`actix::System` initializes actor system, `HttpServer` is an actor and must run within +proper configured actix system. For more information please check +[actix documentation](https://actix.github.io/actix/actix/)