Script Loader: Fix small typo in wp_remove_surrounding_empty_script_tags docblock.

Props shailu25.
Fixes #60591.

git-svn-id: https://develop.svn.wordpress.org/trunk@57682 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Pascal Birchler 2024-02-21 18:37:29 +00:00
parent 6c2ed039cb
commit 668cbbf7a5

View File

@ -3353,7 +3353,7 @@ function wp_add_editor_classic_theme_styles( $editor_settings ) {
* This is a helper meant to be used for literal script tag construction
* within `wp_get_inline_script_tag()` or `wp_print_inline_script_tag()`.
* It removes the literal values of "<script>" and "</script>" from
* around an inline script after trimming whitespace. Typlically this
* around an inline script after trimming whitespace. Typically this
* is used in conjunction with output buffering, where `ob_get_clean()`
* is passed as the `$contents` argument.
*