From 0cbee68a78548c6134ac1e7c4a7e0033ba26e70b Mon Sep 17 00:00:00 2001 From: max <87073104+maxtaran2010@users.noreply.github.com> Date: Fri, 10 Jul 2026 11:06:36 -0700 Subject: [PATCH] fix: correct "Implementors" to "Implementers" in docs (#4142) Co-authored-by: maxtaran2010 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);