1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-07-01 00:44:26 +02:00

speed up ci

This commit is contained in:
Rob Ede
2021-09-08 17:42:14 +01:00
parent d8a0f46f26
commit 1383c7d701
3 changed files with 8 additions and 2 deletions

View File

@ -80,10 +80,10 @@ pub fn route() -> Route {
macro_rules! method_route {
($method_fn:ident, $method_const:ident) => {
paste::paste! {
#[doc = "Creates a new route with `" $method_const "` method guard."]
#[doc = " Creates a new route with `" $method_const "` method guard."]
///
/// # Examples
#[doc = "In this example, one `" $method_const " /{project_id}` route is set up:"]
#[doc = " In this example, one `" $method_const " /{project_id}` route is set up:"]
/// ```
/// use actix_web::{web, App, HttpResponse};
///