diff --git a/src/wp-includes/script-loader.php b/src/wp-includes/script-loader.php
index 25977a9bd7..c5a48f2a67 100644
a
|
b
|
function script_concat_settings() { |
2427 | 2427 | } |
2428 | 2428 | |
2429 | 2429 | /** |
2430 | | * Handles the enqueueing of block scripts and styles that are common to both |
| 2430 | * Handles the enqueuing of block scripts and styles that are common to both |
2431 | 2431 | * the editor and the front-end. |
2432 | 2432 | * |
2433 | 2433 | * @since 5.0.0 |
diff --git a/src/wp-includes/widgets/class-wp-widget-custom-html.php b/src/wp-includes/widgets/class-wp-widget-custom-html.php
index 771520e1c4..3c5841fb9c 100644
a
|
b
|
class WP_Widget_Custom_HTML extends WP_Widget { |
55 | 55 | } |
56 | 56 | |
57 | 57 | /** |
58 | | * Add hooks for enqueueing assets when registering all widget instances of this widget class. |
| 58 | * Add hooks for enqueuing assets when registering all widget instances of this widget class. |
59 | 59 | * |
60 | 60 | * @since 4.9.0 |
61 | 61 | * |
diff --git a/src/wp-includes/widgets/class-wp-widget-text.php b/src/wp-includes/widgets/class-wp-widget-text.php
index c744698ced..3d5039f775 100644
a
|
b
|
class WP_Widget_Text extends WP_Widget { |
44 | 44 | } |
45 | 45 | |
46 | 46 | /** |
47 | | * Adds hooks for enqueueing assets when registering all widget instances of this widget class. |
| 47 | * Adds hooks for enqueuing assets when registering all widget instances of this widget class. |
48 | 48 | * |
49 | 49 | * @param int $number Optional. The unique order number of this widget instance |
50 | 50 | * compared to other instances of the same class. Default -1. |