From 01cbef700fd9d7ce20f44bed06c649f6b238b9bb Mon Sep 17 00:00:00 2001 From: Matt Kantor Date: Fri, 28 Aug 2020 14:16:41 -0700 Subject: [PATCH] Fix a small typo in a doc comment. (#1649) --- src/middleware/logger.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/middleware/logger.rs b/src/middleware/logger.rs index dc6468ab37f..51d4722d762 100644 --- a/src/middleware/logger.rs +++ b/src/middleware/logger.rs @@ -85,7 +85,7 @@ use crate::HttpResponse; /// [`ConnectionInfo::realip_remote_addr()`](../dev/struct.ConnectionInfo.html#method.realip_remote_addr) /// /// If you use this value ensure that all requests come from trusted hosts, since it is trivial -/// for the remote client to simulate been another client. +/// for the remote client to simulate being another client. /// pub struct Logger(Rc);