Commit 84157540c1 for wordpress.org

commit 84157540c1ec9f1b14e7473253cbaf3fa1aadcea
Author: Aaron Jorbin <aaron@jorb.in>
Date:   Tue Jul 1 22:31:34 2025 +0000

    Coding Standards: Fix alignment in `do_blocks`.

    Introduced in [60316].

    See #63588.

    Built from https://develop.svn.wordpress.org/trunk@60402


    git-svn-id: http://core.svn.wordpress.org/trunk@59738 1a063a9b-81f0-0310-95a4-ce76da25c4cd

diff --git a/wp-includes/blocks.php b/wp-includes/blocks.php
index f0001d80b8..56410779fe 100644
--- a/wp-includes/blocks.php
+++ b/wp-includes/blocks.php
@@ -2428,7 +2428,7 @@ function do_blocks( $content ) {
 	 * out-of-memory crashes for certain posts that now run with this change.
 	 */
 	for ( $i = 0; $i < $top_level_block_count; $i++ ) {
-		$output .= render_block( $blocks[ $i ] );
+		$output      .= render_block( $blocks[ $i ] );
 		$blocks[ $i ] = null;
 	}

diff --git a/wp-includes/version.php b/wp-includes/version.php
index 1b2b5148a9..15355bb806 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '6.9-alpha-60401';
+$wp_version = '6.9-alpha-60402';

 /**
  * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.