From 668cbbf7a5dcd2fc4daf535a835ca95a32034e0e Mon Sep 17 00:00:00 2001 From: Pascal Birchler Date: Wed, 21 Feb 2024 18:37:29 +0000 Subject: [PATCH] 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 --- src/wp-includes/script-loader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/script-loader.php b/src/wp-includes/script-loader.php index 7fa4554d50..dca355a0a7 100644 --- a/src/wp-includes/script-loader.php +++ b/src/wp-includes/script-loader.php @@ -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 "" 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. *