1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-09-20 18:40:08 +00:00

update doc string

This commit is contained in:
Nikolay Kim 2018-04-29 22:28:16 -07:00
parent 25b245ac72
commit bfd46e6a71

View file

@ -66,6 +66,9 @@ impl<S: 'static> Scope<S> {
/// 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};