mirror of
https://github.com/actix/actix-web.git
synced 2024-11-10 02:49:33 +00:00
fix doc test
This commit is contained in:
parent
3c472a2f66
commit
7ab23d082d
1 changed files with 3 additions and 3 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue