Skip to content

Commit

Permalink
fixed small comment typos
Browse files Browse the repository at this point in the history
  • Loading branch information
skodak committed May 21, 2010
1 parent 64fa9aa commit 83020ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions lib/packer/file_archive.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public abstract function count();
/**
* Add file into archive
* @param string $localname name of file in archive
* @param string $pathname localtion of file
* @param string $pathname location of file
* @return bool success
*/
public abstract function add_file_from_pathname($localname, $pathname);
Expand Down Expand Up @@ -151,7 +151,7 @@ protected function mangle_pathname($localname) {
* please note that it may fail really badly.
* The resulting file name is cleaned.
*
* @param strin $localname in anothe encoding
* @param strin $localname in another encoding
* @return string in utf-8
*/
protected function unmangle_pathname($localname) {
Expand Down Expand Up @@ -186,7 +186,7 @@ protected function unmangle_pathname($localname) {
//public abstract function next();

/**
* Revinds back to the first file
* Rewinds back to the first file
* @return void
*/
//public abstract function rewind();
Expand Down
4 changes: 2 additions & 2 deletions lib/packer/zip_archive.php
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public function count() {
/**
* Add file into archive
* @param string $localname name of file in archive
* @param string $pathname localtion of file
* @param string $pathname location of file
* @return bool success
*/
public function add_file_from_pathname($localname, $pathname) {
Expand Down Expand Up @@ -310,7 +310,7 @@ public function next() {
}

/**
* Revinds back to the first file
* Rewinds back to the first file
* @return void
*/
public function rewind() {
Expand Down

0 comments on commit 83020ca

Please sign in to comment.