From f46f7efaf4c835a41679ac0139af4d5c2b6f99eb Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 7 Jan 2019 11:37:24 +0000 Subject: [PATCH] Docs: Fix typo in the description of `status` parameter of `WP_Comment_Query`. See #41338. git-svn-id: https://develop.svn.wordpress.org/trunk@44412 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-comment-query.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/class-wp-comment-query.php b/src/wp-includes/class-wp-comment-query.php index aa3be72af2..af05326915 100644 --- a/src/wp-includes/class-wp-comment-query.php +++ b/src/wp-includes/class-wp-comment-query.php @@ -223,7 +223,7 @@ class WP_Comment_Query { * @type string $search Search term(s) to retrieve matching comments for. * Default empty. * @type string|array $status Comment stati to limit results by. Accepts an array - * or space/comma separate list of 'hold' (`comment_status=0`), + * or space/comma-separated list of 'hold' (`comment_status=0`), * 'approve' (`comment_status=1`), 'all', or a custom * comment status. Default 'all'. * @type string|array $type Include comments of a given type, or array of types.