From 0b2acc180d72a5d6230203a881a48058dbbf928d Mon Sep 17 00:00:00 2001 From: Brent Gardner Date: Sun, 8 Dec 2024 05:32:31 -0700 Subject: [PATCH] typo Co-authored-by: Raphael Taylor-Davies <1781103+tustvold@users.noreply.github.com> --- object_store/src/aws/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/object_store/src/aws/client.rs b/object_store/src/aws/client.rs index cc26a2c8864d..ede8b3432715 100644 --- a/object_store/src/aws/client.rs +++ b/object_store/src/aws/client.rs @@ -617,7 +617,7 @@ impl S3Client { location: &Path, opts: PutMultipartOpts, ) -> Result { - let mut reqquest = self.request(Method::POST, location); + let mut request = self.request(Method::POST, location); if let Some(algorithm) = self.config.checksum { match algorithm { Checksum::SHA256 => {