From ffe27f060d27243682a7b1920651877614d4a910 Mon Sep 17 00:00:00 2001 From: Michael Dowling Date: Fri, 27 Mar 2015 11:54:55 -0700 Subject: [PATCH] Fixing typo --- src/S3/StreamWrapper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/S3/StreamWrapper.php b/src/S3/StreamWrapper.php index f387398343..71ff3e8490 100644 --- a/src/S3/StreamWrapper.php +++ b/src/S3/StreamWrapper.php @@ -683,7 +683,7 @@ private function formatUrlStat($result = null) case 'array': // Regular file with 0777 access - see "man 2 stat". $stat['mode'] = $stat[2] = 0100777; - // Pluck the content-type if available. + // Pluck the content-length if available. if (isset($result['ContentLength'])) { $stat['size'] = $stat[7] = $result['ContentLength']; } elseif (isset($stat['Size'])) {