From bfd46e6a7139b91824c56616b1a685d700188369 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Sun, 29 Apr 2018 22:28:16 -0700 Subject: [PATCH] update doc string --- src/scope.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/scope.rs b/src/scope.rs index f1d27159c..46eb9e97c 100644 --- a/src/scope.rs +++ b/src/scope.rs @@ -66,6 +66,9 @@ impl Scope { /// Create scope with new state. /// + /// Scope can have only one nested scope with new state. Every call + /// destroys previously created scope with state. + /// /// ```rust /// # extern crate actix_web; /// use actix_web::{http, App, HttpRequest, HttpResponse, Path};