Commit cd1143a11c for wordpress.org

commit cd1143a11cf917378b5ee479edbb6bae4360b07e
Author: Sergey Biryukov <sergeybiryukov.ru@gmail.com>
Date:   Wed Jan 21 23:39:36 2026 +0000

    Docs: Add parameter descriptions for `_wp_ajax_delete_comment_response()`.

    Follow-up to [10204], [32652].

    Props rejaulalomkhan, huzaifaalmesbah.
    See #64224.
    Built from https://develop.svn.wordpress.org/trunk@61508


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

diff --git a/wp-admin/includes/ajax-actions.php b/wp-admin/includes/ajax-actions.php
index 944d0b7d98..9850d0543c 100644
--- a/wp-admin/includes/ajax-actions.php
+++ b/wp-admin/includes/ajax-actions.php
@@ -454,8 +454,8 @@ function wp_ajax_logged_in() {
  * @since 2.7.0
  * @access private
  *
- * @param int $comment_id
- * @param int $delta
+ * @param int $comment_id Comment ID.
+ * @param int $delta      Change in the number of total comments. Default -1.
  */
 function _wp_ajax_delete_comment_response( $comment_id, $delta = -1 ) {
 	$total    = isset( $_POST['_total'] ) ? (int) $_POST['_total'] : 0;
diff --git a/wp-includes/version.php b/wp-includes/version.php
index f8baea708b..dad5dd2184 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '7.0-alpha-61507';
+$wp_version = '7.0-alpha-61508';

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