From e45fb5fa3e0f1fd955533ee33218b3fa7999b775 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Mon, 29 Jul 2019 14:55:43 +0200 Subject: [PATCH] Fix typo in comment Signed-off-by: Morris Jobke --- lib/private/Files/ObjectStore/S3ObjectTrait.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/Files/ObjectStore/S3ObjectTrait.php b/lib/private/Files/ObjectStore/S3ObjectTrait.php index 82ab4195e4..a63415c7f4 100644 --- a/lib/private/Files/ObjectStore/S3ObjectTrait.php +++ b/lib/private/Files/ObjectStore/S3ObjectTrait.php @@ -91,7 +91,7 @@ trait S3ObjectTrait { try { $uploader->upload(); } catch (S3MultipartUploadException $e) { - // This is an emty file so just touch it then + // This is an empty file so just touch it then if ($count === 0 && feof($countStream)) { $uploader = new ObjectUploader($this->getConnection(), $this->bucket, $urn, ''); $uploader->upload();