Make WordPress Core


Ignore:
Timestamp:
04/12/2024 05:45:23 PM (9 months ago)
Author:
swissspidy
Message:

Docs: Fix various typos and spelling mistakes.

Props swissspidy, jucaduca, sergeybiryukov.
See #60699.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/post/query.php

    r57750 r57987  
    726726        $q->posts = $posts;
    727727
    728         $methd = new ReflectionMethod( 'WP_Query', 'set_found_posts' );
    729         $methd->setAccessible( true );
    730         $methd->invoke( $q, array( 'no_found_rows' => false ), array() );
     728        $method = new ReflectionMethod( 'WP_Query', 'set_found_posts' );
     729        $method->setAccessible( true );
     730        $method->invoke( $q, array( 'no_found_rows' => false ), array() );
    731731
    732732        $this->assertSame( $expected, $q->found_posts );
Note: See TracChangeset for help on using the changeset viewer.