From 4134ca8daa9db261c335e77585183e9d9822b7f1 Mon Sep 17 00:00:00 2001 From: Chris Graham Date: Tue, 2 Apr 2019 16:53:33 -0500 Subject: [PATCH] Fixed slightly confusing language regarding setPassword --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7ec5729..6021757 100644 --- a/README.md +++ b/README.md @@ -567,7 +567,7 @@ $zipFile->rename($oldName, $newName); ``` **ZipFile::setCompressionLevel** - set the compression level for all files in the archive. -> _Note that this method does not apply to entries that were added after this method was run._ +> _Note that this method does not apply to entries that are added after this method is run._ By default, the compression level is -1 (`\PhpZip\ZipFile::LEVEL_DEFAULT_COMPRESSION`) or the compression level specified in the archive for Deflate compression. @@ -671,7 +671,7 @@ $zipFile->setReadPasswordEntry($entryName, $password); ``` **ZipFile::setPassword** - sets a new password for all files in the archive. -> _Note that this method does not apply to entries that were added after this method was run._ +> _Note that this method does not apply to entries that are added after this method is run._ ```php $zipFile->setPassword($password); ``` @@ -691,7 +691,7 @@ $zipFile->setPasswordEntry($entryName, $password, $encryptionMethod); ``` **ZipFile::disableEncryption** - disable encryption for all entries that are already in the archive. -> _Note that this method does not apply to entries that were added after this method was run._ +> _Note that this method does not apply to entries that are added after this method is run._ ```php $zipFile->disableEncryption(); ```