Make WordPress Core

Changeset 36074


Ignore:
Timestamp:
12/23/2015 07:52:04 AM (8 years ago)
Author:
johnbillion
Message:

Docs: Miscellaneous docblock code quality tweaks.

See #32246

Location:
trunk/src/wp-includes
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-http.php

    r35375 r36074  
    835835     * an IP address.
    836836     *
    837      * @see http://home.deds.nl/~aeron/regex/ for IPv6 regex
     837     * @link http://home.deds.nl/~aeron/regex/ for IPv6 regex
    838838     *
    839839     * @since 3.7.0
  • trunk/src/wp-includes/comment-template.php

    r36040 r36074  
    12301230 * halted. It is advised for that reason, that the default theme is not deleted.
    12311231 *
    1232  * @uses $withcomments Will not try to get the comments if the post has none.
     1232 * Will not try to get the comments if the post has none.
    12331233 *
    12341234 * @since 1.5.0
     
    12431243 * @global string     $user_identity
    12441244 * @global bool       $overridden_cpage
     1245 * @global bool       $withcomments
    12451246 *
    12461247 * @param string $file              Optional. The file to load. Default '/comments.php'.
  • trunk/src/wp-includes/deprecated.php

    r36033 r36074  
    23572357 * @see get_users()
    23582358 *
    2359  * @global wpdb $wpdb WordPress database abstraction object.
    2360  * @uses $blog_id The Blog id of the blog for those that use more than one blog
     2359 * @global wpdb $wpdb    WordPress database abstraction object.
     2360 * @global int $blog_id The Blog id of the blog for those that use more than one blog
    23612361 *
    23622362 * @param int $id Blog ID.
  • trunk/src/wp-includes/functions.php

    r36014 r36074  
    676676 *
    677677 * @see _http_build_query() Used to build the query
    678  * @see http://us2.php.net/manual/en/function.http-build-query.php for more on what
    679  *      http_build_query() does.
     678 * @link http://us2.php.net/manual/en/function.http-build-query.php for more on what
     679 *       http_build_query() does.
    680680 *
    681681 * @param array $data URL-encode key/value pairs.
  • trunk/src/wp-includes/functions.wp-scripts.php

    r35796 r36074  
    9191 * Registers a script to be linked later using the wp_enqueue_script() function.
    9292 *
    93  * @see WP_Dependencies::add(), WP_Dependencies::add_data()
     93 * @see WP_Dependencies::add()
     94 * @see WP_Dependencies::add_data()
    9495 *
    9596 * @since 2.6.0
     
    206207 * Registers the script if $src provided (does NOT overwrite), and enqueues it.
    207208 *
    208  * @see WP_Dependencies::add(), WP_Dependencies::add_data(), WP_Dependencies::enqueue()
     209 * @see WP_Dependencies::add()
     210 * @see WP_Dependencies::add_data()
     211 * @see WP_Dependencies::enqueue()
    209212 *
    210213 * @since 2.6.0
  • trunk/src/wp-includes/functions.wp-styles.php

    r32728 r36074  
    137137 * Registers the style if source provided (does NOT overwrite) and enqueues.
    138138 *
    139  * @see WP_Dependencies::add(), WP_Dependencies::enqueue()
     139 * @see WP_Dependencies::add()
     140 * @see WP_Dependencies::enqueue()
    140141 * @link http://www.w3.org/TR/CSS2/media.html#media-types List of CSS media types.
    141142 *
  • trunk/src/wp-includes/general-template.php

    r36042 r36074  
    27372737 * See https://core.trac.wordpress.org/ticket/19173 for more information.
    27382738 *
    2739  * @see wp-includes/class-wp-editor.php
     2739 * @see _WP_Editors::editor()
    27402740 * @since 3.3.0
    27412741 *
  • trunk/src/wp-includes/query.php

    r35968 r36074  
    15181518     *     @type string       $meta_key                Custom field key.
    15191519     *     @type array        $meta_query              An associative array of WP_Meta_Query arguments.
    1520      *                                                 {@see WP_Meta_Query->queries}
     1520     *                                                 {@see WP_Meta_Query}
    15211521     *     @type string       $meta_value              Custom field value.
    15221522     *     @type int          $meta_value_num          Custom field value number.
  • trunk/src/wp-includes/update.php

    r35985 r36074  
    340340 *
    341341 * @since 2.7.0
    342  * @uses $wp_version Used to notify the WordPress version.
    343342 *
    344343 * @param array $extra_stats Extra statistics to report to the WordPress.org API.
Note: See TracChangeset for help on using the changeset viewer.