Make WordPress Core


Ignore:
Timestamp:
01/29/2020 12:43:23 AM (7 years ago)
Author:
SergeyBiryukov
Message:

Docs: Improve inline comments per the documentation standards.

Includes minor code layout fixes for better readability.

See #48303.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/filesystem/base.php

    r46586 r47122  
    3434                $wp_filesystem->init( '/' );
    3535
    36                 // Test creation/exists checks
     36                // Test creation/exists checks.
    3737                $this->assertFalse( $wp_filesystem->is_dir( '/test/' ) );
    3838                $wp_filesystem->mkdir( '/test' );
     
    4040                $this->assertTrue( $wp_filesystem->is_dir( '/test/' ) );
    4141                $this->assertFalse( $wp_filesystem->is_file( '/test' ) );
    42                 //$this->assertFalse( true );
     42                // $this->assertFalse( true );
    4343        }
    4444}
Note: See TracChangeset for help on using the changeset viewer.