From 43bc55f38d7e1777afc5f77575cb608c7d9130a4 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 5 Jan 2021 16:46:10 +0000 Subject: [PATCH] Docs: Fix typo in `wp_set_comment_status` filter DocBlock. Follow-up to [49926]. See #51800. Built from https://develop.svn.wordpress.org/trunk@49934 git-svn-id: http://core.svn.wordpress.org/trunk@49633 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/comment.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/comment.php b/wp-includes/comment.php index bd387aa5ba..e3da72003a 100644 --- a/wp-includes/comment.php +++ b/wp-includes/comment.php @@ -2408,7 +2408,7 @@ function wp_set_comment_status( $comment_id, $comment_status, $wp_error = false * * @param int $comment_id Comment ID. * @param string $comment_status Current comment status. Possible values include - * 'hold', '0', 'approve', '1, 'spam', and 'trash'. + * 'hold', '0', 'approve', '1', 'spam', and 'trash'. */ do_action( 'wp_set_comment_status', $comment->comment_ID, $comment_status ); diff --git a/wp-includes/version.php b/wp-includes/version.php index f77cc7c668..23f872aee1 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.7-alpha-49933'; +$wp_version = '5.7-alpha-49934'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.