[Filesystem] Fixed typos in the docblocks.

This commit is contained in:
Jakub Zalas 2012-04-07 00:05:37 +01:00
parent d4243a28b6
commit f5f5c21228

View File

@ -69,7 +69,7 @@ class Filesystem
/** /**
* Creates empty files. * Creates empty files.
* *
* @param string|array|\Traversable $files A filename, an array of files, or a \Traversable instance to remove * @param string|array|\Traversable $files A filename, an array of files, or a \Traversable instance to create
*/ */
public function touch($files) public function touch($files)
{ {
@ -105,7 +105,7 @@ class Filesystem
/** /**
* Change mode for an array of files or directories. * Change mode for an array of files or directories.
* *
* @param string|array|\Traversable $files A filename, an array of files, or a \Traversable instance to remove * @param string|array|\Traversable $files A filename, an array of files, or a \Traversable instance to change mode
* @param integer $mode The new mode * @param integer $mode The new mode
* @param integer $umask The mode mask (octal) * @param integer $umask The mode mask (octal)
*/ */
@ -171,8 +171,8 @@ class Filesystem
/** /**
* Given an existing path, convert it to a path relative to a given starting path * Given an existing path, convert it to a path relative to a given starting path
* *
* @var string Absolute path of target * @param string $endPath Absolute path of target
* @var string Absolute path where traversal begins * @param string $startPath Absolute path where traversal begins
* *
* @return string Path of target relative to starting path * @return string Path of target relative to starting path
*/ */