diff --git a/wp-includes/compat-utf8.php b/wp-includes/compat-utf8.php index 629cc1864f..36bb690004 100644 --- a/wp-includes/compat-utf8.php +++ b/wp-includes/compat-utf8.php @@ -28,9 +28,10 @@ * 1 === _wp_scan_utf8( $pineapple, $at, $invalid_length ); * $at === 4; $invalid_length === 0; * - * Note! This functions many arguments are passed without and “options” - * array. This choice is based on the fact that this is a low-level function - * and there’s no need to create an array of items on every invocation. + * Note! While passing an options array here might be convenient from a calling-code standpoint, + * this function is intended to serve as a very low-level foundation upon which to build + * higher level functionality. For the sake of keeping costs explicit all arguments are + * passed directly. * * @since 6.9.0 * @access private diff --git a/wp-includes/version.php b/wp-includes/version.php index aec6184117..252cd98a61 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.9-alpha-61003'; +$wp_version = '6.9-alpha-61004'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.