diff --git a/classes/file/FileHandler.class.php b/classes/file/FileHandler.class.php index 29d94eb7f..d31aefc76 100644 --- a/classes/file/FileHandler.class.php +++ b/classes/file/FileHandler.class.php @@ -138,7 +138,7 @@ class FileHandler * Write $buff into the specified file * * @param string $filename Path of target file - * @param string $buff Content to be writeen + * @param string $buff Content to be written * @param string $mode a(append) / w(write) * @return void */ @@ -510,7 +510,7 @@ class FileHandler * @param int $timeout Connection timeout * @param string $method GET/POST * @param string $content_type Content type header of HTTP request - * @param string[] $headers Headers key vaule array. + * @param string[] $headers Headers key value array. * @param string[] $cookies Cookies key value array. * @param string $post_data Request arguments array for POST method * @return string If success, the content of the target file. Otherwise: none @@ -603,7 +603,7 @@ class FileHandler * @param string $timeout Connection timeout * @param string $method GET/POST * @param string $content_type Content type header of HTTP request - * @param string[] $headers Headers key vaule array. + * @param string[] $headers Headers key value array. * @return bool TRUE: success, FALSE: failed */ function getRemoteFile($url, $target_filename, $body = null, $timeout = 3, $method = 'GET', $content_type = null, $headers = array())