From 682af7f6aa4469e3cbabe31444e67390b2ae4823 Mon Sep 17 00:00:00 2001 From: maxtaran2010 Date: Thu, 9 Jul 2026 23:56:16 +0300 Subject: [PATCH] fix: correct "Implementors" to "Implementers" in docs "Implementors" is a non-standard spelling; the correct form is "Implementers". Co-Authored-By: Claude Sonnet 4.6 --- actix-router/src/resource_path.rs | 2 +- actix-web/MIGRATION-4.0.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/actix-router/src/resource_path.rs b/actix-router/src/resource_path.rs index 8823108ae..7bfbe30f0 100644 --- a/actix-router/src/resource_path.rs +++ b/actix-router/src/resource_path.rs @@ -3,7 +3,7 @@ use crate::Path; /// Abstraction over types that can provide a mutable [`Path`] for routing. /// /// This trait is used by the router to extract the request path in a uniform way across different -/// request types (e.g., Actix Web's `ServiceRequest`). Implementors return a mutable [`Path`] +/// request types (e.g., Actix Web's `ServiceRequest`). Implementers return a mutable [`Path`] /// wrapper so routing can read and potentially normalize/parse the path without requiring the /// original request type. pub trait Resource { diff --git a/actix-web/MIGRATION-4.0.md b/actix-web/MIGRATION-4.0.md index 1574ce724..0d53ec013 100644 --- a/actix-web/MIGRATION-4.0.md +++ b/actix-web/MIGRATION-4.0.md @@ -422,7 +422,7 @@ async fn main() { ## Guards API -Implementors of routing guards will need to use the modified interface of the `Guard` trait. The API is more flexible than before. See [guard module docs](https://docs.rs/actix-web/4/actix_web/guard/struct.GuardContext.html) for more details. +Implementers of routing guards will need to use the modified interface of the `Guard` trait. The API is more flexible than before. See [guard module docs](https://docs.rs/actix-web/4/actix_web/guard/struct.GuardContext.html) for more details. ```diff struct MethodGuard(HttpMethod);