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

fix doc test

This commit is contained in:
Nikolay Kim 2018-06-02 13:45:29 -07:00
parent 3c472a2f66
commit 7ab23d082d

View file

@ -283,9 +283,9 @@ impl<S> HttpRequest<S> {
/// Generate url for named resource
///
/// ```rust
/// //#### # extern crate actix_web;
/// //#### # use actix_web::{App, HttpRequest, HttpResponse, http};
/// //#### #
/// # extern crate actix_web;
/// # use actix_web::{App, HttpRequest, HttpResponse, http};
/// #
/// fn index(req: HttpRequest) -> HttpResponse {
/// let url = req.url_for("foo", &["1", "2", "3"]); // <- generate url for "foo" resource
/// HttpResponse::Ok().into()