From 0c685e2f23b6e2b532d0cb061183ca3e3aad6af4 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Mon, 13 Jul 2015 21:39:38 +0000 Subject: [PATCH] Fix inline documentation syntax for the `language_attributes()` DocBlock. See #32246. See #32891. git-svn-id: https://develop.svn.wordpress.org/trunk@33229 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/general-template.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/general-template.php b/src/wp-includes/general-template.php index 86414b535b..97b780a2cc 100644 --- a/src/wp-includes/general-template.php +++ b/src/wp-includes/general-template.php @@ -2651,7 +2651,7 @@ function get_language_attributes( $doctype = 'html' ) { } /** - * Display the language attributes for the html tag. + * Displays the language attributes for the html tag. * * Builds up a set of html attributes containing the text direction and language * information for the page. @@ -2659,7 +2659,7 @@ function get_language_attributes( $doctype = 'html' ) { * @since 2.1.0 * @since 4.3.0 Converted into a wrapper for get_language_attributes(). * - * @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 language_attributes( $doctype = 'html' ) { echo get_language_attributes( $doctype );