Index: src/wp-includes/comment.php
===================================================================
--- src/wp-includes/comment.php	(revision 32500)
+++ src/wp-includes/comment.php	(working copy)
@@ -2260,8 +2260,21 @@
  *
  * @see wp_insert_comment()
  *
- * @param array $commentdata Contains information on the comment. See wp_insert_comment()
- *                           for information on accepted arguments.
+ * @param array $commentdata {
+ *     Contains information on the comment.
+ *
+ *     @type string $comment_author       The name of the author of the comment.
+ *     @type string $comment_author_email The email address of the `$comment_author`.
+ *     @type string $comment_author_url   The URL address of the `$comment_author`.
+ *     @type string $comment_content      The content of the comment.
+ *     @type string $comment_date         The date the comment was submitted. Default is the
+ *                                        current time.
+ *     @type string $comment_date_gmt     The date the comment was submitted in the GMT timezone.
+ *                                        Default is `$comment_date` in the GMT timezone.
+ *     @type int    $comment_parent       The ID of this comment's parent, if any. Default 0.
+ *     @type int    $comment_post_ID      The ID of the post that relates to the comment.
+ *     @type int    $user_id              The ID of the user who submitted the comment. Default 0.
+ * }
  * @return int|false The ID of the comment on success, false on failure.
  */
 function wp_new_comment( $commentdata ) {
