From bf267e05ca3cf51b401c0c5ee9da0178439c86c2 Mon Sep 17 00:00:00 2001 From: davidbaumwald Date: Thu, 25 Mar 2021 20:00:05 +0000 Subject: [PATCH] Docs: Fix description for `$htmlhint` argument in code editor settings. Introduced in [41558]. Props sabernhardt. See #52628. Built from https://develop.svn.wordpress.org/trunk@50583 git-svn-id: http://core.svn.wordpress.org/trunk@50196 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/general-template.php | 6 +++--- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index c82b97032c..66ddf82e4d 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -3534,7 +3534,7 @@ function wp_enqueue_editor() { * @type array $codemirror Additional CodeMirror setting overrides. * @type array $csslint CSSLint rule overrides. * @type array $jshint JSHint rule overrides. - * @type array $htmlhint JSHint rule overrides. + * @type array $htmlhint HTMLHint rule overrides. * } * @return array|false Settings for the enqueued code editor, or false if the editor was not enqueued. */ @@ -3625,7 +3625,7 @@ function wp_enqueue_code_editor( $args ) { * @type array $codemirror Additional CodeMirror setting overrides. * @type array $csslint CSSLint rule overrides. * @type array $jshint JSHint rule overrides. - * @type array $htmlhint JSHint rule overrides. + * @type array $htmlhint HTMLHint rule overrides. * } * @return array|false Settings for the code editor. */ @@ -3962,7 +3962,7 @@ function wp_get_code_editor_settings( $args ) { * @type array $codemirror Additional CodeMirror setting overrides. * @type array $csslint CSSLint rule overrides. * @type array $jshint JSHint rule overrides. - * @type array $htmlhint JSHint rule overrides. + * @type array $htmlhint HTMLHint rule overrides. * } */ return apply_filters( 'wp_code_editor_settings', $settings, $args ); diff --git a/wp-includes/version.php b/wp-includes/version.php index c6c2ab1c01..e249997650 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.8-alpha-50582'; +$wp_version = '5.8-alpha-50583'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.