From a1d0f051b7fd309e48768185e70380a09a35b269 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Fri, 4 Mar 2022 17:39:32 +0000 Subject: [PATCH] fix typo --- actix-cors/src/builder.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/actix-cors/src/builder.rs b/actix-cors/src/builder.rs index e1dec6960..b6c50c1c4 100644 --- a/actix-cors/src/builder.rs +++ b/actix-cors/src/builder.rs @@ -361,9 +361,8 @@ impl Cors { self } - /// Set a maximum time (in seconds) for which this CORS request maybe cached. - /// This value is set as the `Access-Control-Max-Age` header as specified in - /// the [Fetch Standard CORS protocol]. + /// Set a maximum time (in seconds) for which this CORS request may be cached. This value is set + /// as the `Access-Control-Max-Age` header as specified in the [Fetch Standard CORS protocol]. /// /// Pass a number (of seconds) or use None to disable sending max age header. ///