Make WordPress Core


Ignore:
Timestamp:
12/06/2019 10:21:07 PM (5 years ago)
Author:
johnbillion
Message:

Docs: Correct various docblocks documentation.

See #48303

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/comment-template.php

    r46660 r46821  
    17181718     * @since 2.7.0
    17191719     *
    1720      * @param string  $link    The HTML markup for the comment reply link.
    1721      * @param array   $args    An array of arguments overriding the defaults.
    1722      * @param object $comment The object of the comment being replied.
    1723      * @param WP_Post $post    The WP_Post object.
     1720     * @param string     $link    The HTML markup for the comment reply link.
     1721     * @param array      $args    An array of arguments overriding the defaults.
     1722     * @param WP_Comment $comment The object of the comment being replied.
     1723     * @param WP_Post    $post    The WP_Post object.
    17241724     */
    17251725    return apply_filters( 'comment_reply_link', $args['before'] . $link . $args['after'], $args, $comment, $post );
     
    17331733 * @see get_comment_reply_link()
    17341734 *
    1735  * @param array       $args    Optional. Override default options.
    1736  * @param int        $comment Comment being replied to. Default current comment.
    1737  * @param int|WP_Post $post    Post ID or WP_Post object the comment is going to be displayed on.
    1738  *                             Default current post.
     1735 * @param array          $args    Optional. Override default options.
     1736 * @param int|WP_Comment $comment Comment being replied to. Default current comment.
     1737 * @param int|WP_Post    $post    Post ID or WP_Post object the comment is going to be displayed on.
     1738 *                                Default current post.
    17391739 */
    17401740function comment_reply_link( $args = array(), $comment = null, $post = null ) {
Note: See TracChangeset for help on using the changeset viewer.