From 9fda8cdc84cc488c5d3bb651db5f388bf3dd90c2 Mon Sep 17 00:00:00 2001 From: Pavel Puchkin Date: Wed, 5 Mar 2014 11:25:58 +1000 Subject: [PATCH] Type in comment --- src/Composer/Downloader/GzipDownloader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Downloader/GzipDownloader.php b/src/Composer/Downloader/GzipDownloader.php index 4444db369..fb4bce89d 100644 --- a/src/Composer/Downloader/GzipDownloader.php +++ b/src/Composer/Downloader/GzipDownloader.php @@ -50,7 +50,7 @@ class GzipDownloader extends ArchiveDownloader throw new \RuntimeException($processError); } - // Gzip version of PHP has built-in support of gzip functions + // Windows version of PHP has built-in support of gzip functions $archiveFile = gzopen($file, 'rb'); $targetFile = fopen($targetFilepath, 'wb'); while ($string = gzread($archiveFile, 4096)) {