diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php
index 444a2dcddf..acc3b5bda2 100644
--- a/wp-includes/general-template.php
+++ b/wp-includes/general-template.php
@@ -5024,7 +5024,7 @@ function __checked_selected_helper( $helper, $current, $echo, $type ) { // phpcs
function wp_required_field_indicator() {
/* translators: Character to identify required form fields. */
$glyph = __( '*' );
- $indicator = '' . esc_html( $glyph ) . '';
+ $indicator = '' . esc_html( $glyph ) . '';
return $indicator;
}
@@ -5038,7 +5038,7 @@ function wp_required_field_indicator() {
*/
function wp_required_field_message() {
$message = sprintf(
- '%s',
+ '%s',
/* translators: %s: Asterisk symbol (*). */
sprintf( __( 'Required fields are marked %s' ), wp_required_field_indicator() )
);
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 062b451610..2650849f8a 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
-$wp_version = '6.1-alpha-54135';
+$wp_version = '6.1-alpha-54136';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.