Skip to content

Commit

Permalink
chore: fix language
Browse files Browse the repository at this point in the history
  • Loading branch information
thelfensdrfer committed Nov 27, 2021
1 parent 1ffb418 commit 4454361
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/AutoUpdate.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class AutoUpdate {
private $log;

/**
* Result of simulated install.
* Result of simulated installation.
*
* @var array
*/
Expand Down Expand Up @@ -183,7 +183,7 @@ class AutoUpdate {
public const ERROR_DELETE_TEMP_UPDATE = 50;

/**
* Error in simulated install.
* Error in simulated installation.
*/
public const ERROR_SIMULATE = 70;

Expand Down Expand Up @@ -237,7 +237,7 @@ public function setTempDir(string $dir): bool
}

/**
* Set the install directory.
* Set the installation directory.
*
* @param string $dir
* @return bool
Expand Down Expand Up @@ -823,7 +823,7 @@ protected function install(string $updateFile, bool $simulateInstall, string $ve

// Extract file
if ($zip->extractTo($this->installDir, $fileStats['name']) === false) {
$this->log->error(sprintf('Coud not read zip entry "%s"', $fileStats['name']));
$this->log->error(sprintf('Could not read zip entry "%s"', $fileStats['name']));
continue;
}

Expand Down

0 comments on commit 4454361

Please sign in to comment.