Skip to content

Commit

Permalink
Fix typos in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
yadaiio committed Nov 13, 2023
1 parent 9508b6d commit e8fbf56
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
remove dedicated bundler classes, always bundle complete package.
(#85, #86, #89 and #92 by @clue)

* Add build script removing uneeded files and update development docs.
* Add build script removing unneeded files and update development docs.
(#91 by @clue)

## 1.0.0 (2015-11-15)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ $ phpunit
> In essence, the `install` command will basically just issue a `build` and then
`sudo mv $target.phar /usr/local/bin/$target`. It will ask you for your sudo password
when necessary, so it's not needed (and in fact not *recommended*) to run the whole
comamnd via `sudo`.
command via `sudo`.
>
> Windows limitation: Note that this subcommand is not available on Windows.
Please use the `build` command and place Phar in your `$PATH` manually.
Expand Down
2 changes: 1 addition & 1 deletion src/Logger.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace Clue\PharComposer;

/**
* Interface for logging outout.
* Interface for logging out.
*
* TODO: should be used in the Command classes as well
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Phar/PharComposer.php
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public function build()
throw new \RuntimeException('Directory "' . $pathVendor . '" not properly installed, did you run "composer install"?');
}

// get target and tempory file name to write to
// get target and temporary file name to write to
$target = $this->getTarget();
do {
$tmp = $target . '.' . mt_rand() . '.phar';
Expand Down

0 comments on commit e8fbf56

Please sign in to comment.