Make WordPress Core

Changeset 36739


Ignore:
Timestamp:
02/26/2016 05:22:30 PM (9 years ago)
Author:
DrewAPicture
Message:

Docs: Fix two typos in return descriptions for WP_Theme private usort() methods.

See #32246.

File:
1 edited

Legend:

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

    r36738 r36739  
    13481348     * @param string $b Second name.
    13491349     * @return int Negative if `$a` falls lower in the natural order than `$b`. Zero if they fall equally.
    1350      *             Greater than 0 if `$a` falls higher in the natural order than `$b`. Used with uasort().
     1350     *             Greater than 0 if `$a` falls higher in the natural order than `$b`. Used with usort().
    13511351     */
    13521352    private static function _name_sort( $a, $b ) {
     
    13651365     * @param string $b Second name.
    13661366     * @return int Negative if `$a` falls lower in the natural order than `$b`. Zero if they fall equally.
    1367      *             Greater than 0 if `$a` falls higher in the natural order than `$b`. Used with uasort().
     1367     *             Greater than 0 if `$a` falls higher in the natural order than `$b`. Used with usort().
    13681368     */
    13691369    private static function _name_sort_i18n( $a, $b ) {
Note: See TracChangeset for help on using the changeset viewer.