diff --git a/wp-includes/comment.php b/wp-includes/comment.php index 9054e1acee..eae3a80731 100644 --- a/wp-includes/comment.php +++ b/wp-includes/comment.php @@ -138,7 +138,7 @@ function check_comment($author, $email, $url, $comment, $user_ip, $user_agent, $ * @since 4.1.0 Refactored to leverage WP_Comment_Query over a direct query. * * @param int $post_id The ID of the post. - * @param array $args Optional. See WP_Comment_Query::query() for information on accepted arguments. + * @param array $args Optional. See WP_Comment_Query::__construct() for information on accepted arguments. * @return int|array $comments The approved comments, or number of comments if `$count` * argument is true. */ @@ -217,7 +217,7 @@ function get_comment( &$comment = null, $output = OBJECT ) { * * @since 2.7.0 * - * @param string|array $args Optional. Array or string of arguments. See WP_Comment_Query::parse_query() + * @param string|array $args Optional. Array or string of arguments. See WP_Comment_Query::__construct() * for information on accepted arguments. Default empty. * @return int|array List of comments or number of found comments if `$count` argument is true. */ diff --git a/wp-includes/version.php b/wp-includes/version.php index 3416728570..8e86f1a2a3 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9-beta3-41939'; +$wp_version = '4.9-beta3-41940'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.