Fix inline documentation syntax in the DocBlock for `get_language_attributes()`, introduced in 4.3.

See [32868]. See #32891.

Built from https://develop.svn.wordpress.org/trunk@33228


git-svn-id: http://core.svn.wordpress.org/trunk@33200 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2015-07-13 21:39:24 +00:00
parent ffb873680a
commit 2d14bd09b9
2 changed files with 3 additions and 3 deletions

View File

@ -2613,14 +2613,14 @@ function the_search_query() {
} }
/** /**
* Get the language attributes for the html tag. * Gets the language attributes for the html tag.
* *
* Builds up a set of html attributes containing the text direction and language * Builds up a set of html attributes containing the text direction and language
* information for the page. * information for the page.
* *
* @since 4.3.0 * @since 4.3.0
* *
* @param string $doctype Optional. The type of html document (xhtml|html). Default html. * @param string $doctype Optional. The type of html document. Accepts 'xhtml' or 'html'. Default 'html'.
*/ */
function get_language_attributes( $doctype = 'html' ) { function get_language_attributes( $doctype = 'html' ) {
$attributes = array(); $attributes = array();

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.3-beta2-33227'; $wp_version = '4.3-beta2-33228';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.