From 53ce9d6f50e8b79f1cb6dc38e67a197e822aeb4c Mon Sep 17 00:00:00 2001 From: westi Date: Sat, 14 May 2011 09:56:59 +0000 Subject: [PATCH] More phpdoc typo fixes. See #17414 props Utkarsh git-svn-id: http://svn.automattic.com/wordpress/trunk@17926 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-filesystem-base.php | 6 +++--- wp-admin/includes/class-wp-filesystem-direct.php | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/wp-admin/includes/class-wp-filesystem-base.php b/wp-admin/includes/class-wp-filesystem-base.php index 6c072ce7a8..546cc7f9c0 100644 --- a/wp-admin/includes/class-wp-filesystem-base.php +++ b/wp-admin/includes/class-wp-filesystem-base.php @@ -21,7 +21,7 @@ class WP_Filesystem_Base { */ var $verbose = false; /** - * Cached list of local filepaths to maped remote filepaths. + * Cached list of local filepaths to mapped remote filepaths. * * @since 2.7 * @access private @@ -215,14 +215,14 @@ class WP_Filesystem_Base { } } - //Only check this as a last resort, to prevent locating the incorrect install. All above proceeedures will fail quickly if this is the right branch to take. + //Only check this as a last resort, to prevent locating the incorrect install. All above procedures will fail quickly if this is the right branch to take. if (isset( $files[ $last_path ] ) ) { if ( $this->verbose ) printf( __('Found %s') . '
', $base . $last_path ); return trailingslashit($base . $last_path); } if ( $loop ) - return false; //Prevent tihs function looping again. + return false; //Prevent this function from looping again. //As an extra last resort, Change back to / if the folder wasnt found. This comes into effect when the CWD is /home/user/ but WP is at /var/www/.... mainly dedicated setups. return $this->search_for_folder($folder, '/', true); diff --git a/wp-admin/includes/class-wp-filesystem-direct.php b/wp-admin/includes/class-wp-filesystem-direct.php index 0f3c7d5255..9703d73add 100644 --- a/wp-admin/includes/class-wp-filesystem-direct.php +++ b/wp-admin/includes/class-wp-filesystem-direct.php @@ -19,7 +19,7 @@ class WP_Filesystem_Direct extends WP_Filesystem_Base { /** * constructor * - * @param mixed $arg ingored argument + * @param mixed $arg ignored argument */ function __construct($arg) { $this->method = 'direct'; @@ -222,7 +222,7 @@ class WP_Filesystem_Direct extends WP_Filesystem_Base { function delete($file, $recursive = false, $type = false) { if ( empty($file) ) //Some filesystems report this as /, which can cause non-expected recursive deletion of all files in the filesystem. return false; - $file = str_replace('\\', '/', $file); //for win32, occasional problems deleteing files otherwise + $file = str_replace('\\', '/', $file); //for win32, occasional problems deleting files otherwise if ( 'f' == $type || $this->is_file($file) ) return @unlink($file);