From 019a261d3f46ddd78c828d3388553442187b6d50 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 5 Jan 2021 16:44:24 +0000 Subject: [PATCH] Docs: Fix typo in `wp_set_comment_status` filter DocBlock. Follow-up to [49926]. See #51800. git-svn-id: https://develop.svn.wordpress.org/trunk@49934 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/comment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/comment.php b/src/wp-includes/comment.php index bd387aa5ba..e3da72003a 100644 --- a/src/wp-includes/comment.php +++ b/src/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 );