Make WordPress Core


Ignore:
Timestamp:
07/20/2016 07:32:05 PM (9 years ago)
Author:
DrewAPicture
Message:

Docs: Fix formatting, tense, verb conjugation, and other syntax for wp-includes/* elements introduced or changed in 4.6.

Part 2/2.

Fixes #37318.

File:
1 edited

Legend:

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

    r37985 r38125  
    757757
    758758    /**
    759      * Given a charset and collation, determine the best charset and collation to use.
     759     * Determines the best charset and collation to use given a charset and collation.
    760760     *
    761761     * For example, when able, utf8mb4 should be used instead of utf8.
    762762     *
    763763     * @since 4.6.0
    764      *
    765      * @param  string $charset The character set to check.
    766      * @param  string $collate The collation to check.
    767      *
     764     * @access public
     765     *
     766     * @param string $charset The character set to check.
     767     * @param string $collate The collation to check.
    768768     * @return array The most appropriate character set and collation to use.
    769769     */
     
    32373237     *
    32383238     * @since 2.7.0
    3239      * @since 4.1.0 Support was added for the 'utf8mb4' feature.
    3240      * @since 4.6.0 Support was added for the 'utf8mb4_520' feature.
     3239     * @since 4.1.0 Added support for the 'utf8mb4' feature.
     3240     * @since 4.6.0 Added support for the 'utf8mb4_520' feature.
    32413241     *
    32423242     * @see wpdb::db_version()
     
    32773277                    return version_compare( $client_version, '5.5.3', '>=' );
    32783278                }
    3279             case 'utf8mb4_520' :  // @since 4.6.0
     3279            case 'utf8mb4_520' : // @since 4.6.0
    32803280                return version_compare( $version, '5.6', '>=' );
    32813281        }
Note: See TracChangeset for help on using the changeset viewer.