Docs: Fix description for $htmlhint argument in code editor settings.

Introduced in [41558].

Props sabernhardt.
See #52628.

git-svn-id: https://develop.svn.wordpress.org/trunk@50583 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
David Baumwald 2021-03-25 19:58:50 +00:00
parent 22eb45a644
commit d27f6650fe

View File

@ -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 );