Index: src/wp-content/themes/twentytwentyfour/functions.php
===================================================================
--- src/wp-content/themes/twentytwentyfour/functions.php	(revision 57134)
+++ src/wp-content/themes/twentytwentyfour/functions.php	(working copy)
@@ -21,14 +21,15 @@
 	 */
 	function twentytwentyfour_block_styles() {
 
+		/*
+		 * Styles for the custom Arrow icon style of the Details block
+		 * https://github.com/WordPress/twentytwentyfour/issues/119
+		 */
 		register_block_style(
 			'core/details',
 			array(
 				'name'         => 'arrow-icon-details',
 				'label'        => __( 'Arrow icon', 'twentytwentyfour' ),
-				/*
-				 * Styles for the custom Arrow icon style of the Details block
-				 */
 				'inline_style' => '
 				.is-style-arrow-icon-details {
 					padding-top: var(--wp--preset--spacing--10);
@@ -44,15 +45,16 @@
 				}',
 			)
 		);
+
+		/*
+		 * Styles variation for post terms
+		 * https://github.com/WordPress/gutenberg/issues/24956
+		 */
 		register_block_style(
 			'core/post-terms',
 			array(
 				'name'         => 'pill',
 				'label'        => __( 'Pill', 'twentytwentyfour' ),
-				/*
-				 * Styles variation for post terms
-				 * https://github.com/WordPress/gutenberg/issues/24956
-				 */
 				'inline_style' => '
 				.is-style-pill a,
 				.is-style-pill span:not([class], [data-rich-text-placeholder]) {
@@ -67,15 +69,16 @@
 				}',
 			)
 		);
+
+		/*
+		 * Styles for the custom checkmark list block style
+		 * https://github.com/WordPress/gutenberg/issues/51480
+		 */
 		register_block_style(
 			'core/list',
 			array(
 				'name'         => 'checkmark-list',
 				'label'        => __( 'Checkmark', 'twentytwentyfour' ),
-				/*
-				 * Styles for the custom checkmark list block style
-				 * https://github.com/WordPress/gutenberg/issues/51480
-				 */
 				'inline_style' => '
 				ul.is-style-checkmark-list {
 					list-style-type: "\2713";
@@ -86,14 +89,16 @@
 				}',
 			)
 		);
+
+		/*
+		 * Styles for the custom arrow nav link block style
+		 * https://github.com/WordPress/twentytwentyfour/issues/528
+		 */
 		register_block_style(
 			'core/navigation-link',
 			array(
 				'name'         => 'arrow-link',
 				'label'        => __( 'With arrow', 'twentytwentyfour' ),
-				/*
-				 * Styles for the custom arrow nav link block style
-				 */
 				'inline_style' => '
 				.is-style-arrow-link .wp-block-navigation-item__label:after {
 					content: "\2197";
@@ -104,18 +109,23 @@
 				}',
 			)
 		);
+
+		/*
+		 * Styles for the asterisk variation of the Heading block
+		 * https://github.com/WordPress/twentytwentyfour/pull/471
+		 */
 		register_block_style(
 			'core/heading',
 			array(
 				'name'         => 'asterisk',
 				'label'        => __( 'With asterisk', 'twentytwentyfour' ),
-				'inline_style' => "
+				'inline_style' => '
 				.is-style-asterisk:before {
-					content: '';
+					content: "";
 					width: 1.5rem;
 					height: 3rem;
 					background: var(--wp--preset--color--contrast-2, currentColor);
-					clip-path: path('M11.93.684v8.039l5.633-5.633 1.216 1.23-5.66 5.66h8.04v1.737H13.2l5.701 5.701-1.23 1.23-5.742-5.742V21h-1.737v-8.094l-5.77 5.77-1.23-1.217 5.743-5.742H.842V9.98h8.162l-5.701-5.7 1.23-1.231 5.66 5.66V.684h1.737Z');
+					clip-path: path("M11.93.684v8.039l5.633-5.633 1.216 1.23-5.66 5.66h8.04v1.737H13.2l5.701 5.701-1.23 1.23-5.742-5.742V21h-1.737v-8.094l-5.77 5.77-1.23-1.217 5.743-5.742H.842V9.98h8.162l-5.701-5.7 1.23-1.231 5.66 5.66V.684h1.737Z");
 					display: block;
 				}
 
@@ -138,7 +148,7 @@
 
 				.rtl .is-style-asterisk.has-text-align-left:before {
 					margin-right: auto;
-				}",
+				}',
 			)
 		);
 	}
