From f5f5c21228f12a02fec7d8eed5bc69a30d55a805 Mon Sep 17 00:00:00 2001 From: Jakub Zalas Date: Sat, 7 Apr 2012 00:05:37 +0100 Subject: [PATCH] [Filesystem] Fixed typos in the docblocks. --- src/Symfony/Component/Filesystem/Filesystem.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Symfony/Component/Filesystem/Filesystem.php b/src/Symfony/Component/Filesystem/Filesystem.php index 960bfb7098..62f83d8f66 100644 --- a/src/Symfony/Component/Filesystem/Filesystem.php +++ b/src/Symfony/Component/Filesystem/Filesystem.php @@ -69,7 +69,7 @@ class Filesystem /** * 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) { @@ -105,7 +105,7 @@ class Filesystem /** * 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 $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 * - * @var string Absolute path of target - * @var string Absolute path where traversal begins + * @param string $endPath Absolute path of target + * @param string $startPath Absolute path where traversal begins * * @return string Path of target relative to starting path */