Explorar el Código

Type in comment

Pavel Puchkin hace 11 años
padre
commit
9fda8cdc84
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/Composer/Downloader/GzipDownloader.php

+ 1 - 1
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)) {