From 0c2ae60a2ba99aa207c8005048a0d895318b23ef Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sun, 15 Nov 2020 17:28:46 +0000 Subject: [PATCH] Update src/types/either.rs Co-authored-by: Jonas Platte --- src/types/either.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/either.rs b/src/types/either.rs index 110c5f88d..bfd5cbbf0 100644 --- a/src/types/either.rs +++ b/src/types/either.rs @@ -138,7 +138,7 @@ where /// "polymorphic payloads" where, for example, a form might be JSON or URL encoded. /// /// It is important to note that this extractor, by necessity, buffers the entire request payload -/// as part of it's implementation. Though, it does respect a `PayloadConfig`'s maximum size limit. +/// as part of its implementation. Though, it does respect a `PayloadConfig`'s maximum size limit. impl FromRequest for Either where A: FromRequest + 'static,