From bc895262304ddcad04ed3d8c7d49bac285019c3f Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sun, 29 Dec 2024 14:30:22 +0000 Subject: [PATCH] docs: fix whitespace --- actix-web/src/resource.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actix-web/src/resource.rs b/actix-web/src/resource.rs index 10b68b3d0..aee0dff93 100644 --- a/actix-web/src/resource.rs +++ b/actix-web/src/resource.rs @@ -29,8 +29,8 @@ use crate::{ /// Resource in turn has at least one route. Route consists of an handlers objects and list of /// guards (objects that implement `Guard` trait). Resources and routes uses builder-like pattern /// for configuration. During request handling, the resource object iterates through all routes -/// and checks guards for the specific route, if the request matches all the guards, then the -/// route is considered matched and the route handler gets called. +/// and checks guards for the specific route, if the request matches all the guards, then the route +/// is considered matched and the route handler gets called. /// /// # Examples /// ```