diff --git a/wp-includes/functions.wp-scripts.php b/wp-includes/functions.wp-scripts.php index 77a6d0a02c..5aa26cca5e 100644 --- a/wp-includes/functions.wp-scripts.php +++ b/wp-includes/functions.wp-scripts.php @@ -93,7 +93,7 @@ function wp_print_scripts( $handles = false ) { /** * Adds extra code to a registered script. * - * Code will only be added if the script in already in the queue. + * Code will only be added if the script is already in the queue. * Accepts a string $data containing the Code. If two or more code blocks * are added to the same script $handle, they will be printed in the order * they were added, i.e. the latter added code can redeclare the previous. diff --git a/wp-includes/functions.wp-styles.php b/wp-includes/functions.wp-styles.php index 20acd58e9a..517aac8887 100644 --- a/wp-includes/functions.wp-styles.php +++ b/wp-includes/functions.wp-styles.php @@ -67,7 +67,7 @@ function wp_print_styles( $handles = false ) { /** * Add extra CSS styles to a registered stylesheet. * - * Styles will only be added if the stylesheet in already in the queue. + * Styles will only be added if the stylesheet is already in the queue. * Accepts a string $data containing the CSS. If two or more CSS code blocks * are added to the same stylesheet $handle, they will be printed in the order * they were added, i.e. the latter added styles can redeclare the previous. diff --git a/wp-includes/version.php b/wp-includes/version.php index 6d2a68a1d5..a8071b79ff 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.1-alpha-44349'; +$wp_version = '5.1-alpha-44350'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.