Make WordPress Core


Ignore:
Timestamp:
05/14/2011 09:56:59 AM (13 years ago)
Author:
westi
Message:

More phpdoc typo fixes. See #17414 props Utkarsh

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/class-wp-filesystem-direct.php

    r17771 r17926  
    2020     * constructor
    2121     *
    22      * @param mixed $arg ingored argument
     22     * @param mixed $arg ignored argument
    2323     */
    2424    function __construct($arg) {
     
    223223        if ( empty($file) ) //Some filesystems report this as /, which can cause non-expected recursive deletion of all files in the filesystem.
    224224            return false;
    225         $file = str_replace('\\', '/', $file); //for win32, occasional problems deleteing files otherwise
     225        $file = str_replace('\\', '/', $file); //for win32, occasional problems deleting files otherwise
    226226
    227227        if ( 'f' == $type || $this->is_file($file) )
Note: See TracChangeset for help on using the changeset viewer.