Make WordPress Core


Ignore:
Timestamp:
10/19/2024 11:52:48 PM (8 weeks ago)
Author:
SergeyBiryukov
Message:

Docs: Fix typo in a comment in WP_Rewrite::refresh_rewrite_rules().

Includes adjusting the method DocBlock per the documentation standards.

Follow-up to [56448].

See #61608.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-rewrite.php

    r59228 r59258  
    15021502    /**
    15031503     * Refreshes the rewrite rules, saving the fresh value to the database.
    1504      * If the `wp_loaded` action has not occurred yet, will postpone saving to the database.
     1504     *
     1505     * If the {@see 'wp_loaded'} action has not occurred yet, will postpone saving to the database.
    15051506     *
    15061507     * @since 6.4.0
     
    15141515        if ( ! did_action( 'wp_loaded' ) ) {
    15151516            /*
    1516              * Is not safe to save the results right now, as the rules may be partial.
     1517             * It is not safe to save the results right now, as the rules may be partial.
    15171518             * Need to give all rules the chance to register.
    15181519             */
Note: See TracChangeset for help on using the changeset viewer.