Make WordPress Core


Ignore:
Timestamp:
07/02/2020 11:28:13 AM (4 years ago)
Author:
SergeyBiryukov
Message:

Docs: Spell "falsey" in a consistent way.

See #49572.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php

    r48100 r48275  
    266266        $total_terms = wp_count_terms( $this->taxonomy, $count_args );
    267267
    268         // wp_count_terms() can return a falsy value when the term has no children.
     268        // wp_count_terms() can return a falsey value when the term has no children.
    269269        if ( ! $total_terms ) {
    270270            $total_terms = 0;
Note: See TracChangeset for help on using the changeset viewer.