s/echos/echoes/ in phpdoc. props demetris, fixes #13742.

git-svn-id: https://develop.svn.wordpress.org/trunk@15148 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2010-06-06 05:16:32 +00:00
parent a7ba59dbf1
commit 6f57a1a3ec
5 changed files with 8 additions and 8 deletions

View File

@ -2965,7 +2965,7 @@ function get_hidden_meta_boxes( $screen ) {
* Show settings sections in your admin page callback function with do_settings_sections().
* Add settings fields to your section with add_settings_field()
*
* The $callback argument should be the name of a function that echos out any
* The $callback argument should be the name of a function that echoes out any
* content you want to show at the top of the settings section before the actual
* fields. It can output nothing if you want.
*

View File

@ -176,7 +176,7 @@ function get_the_author_posts() {
*
* @link http://codex.wordpress.org/Template_Tags/the_author_posts
* @since 0.71
* @uses get_the_author_posts() Echos returned value from function.
* @uses get_the_author_posts() Echoes returned value from function.
*/
function the_author_posts() {
echo get_the_author_posts();

View File

@ -439,7 +439,7 @@ class WP_Object_Cache {
}
/**
* Echos the stats of the caching.
* Echoes the stats of the caching.
*
* Gives the cache hits, and cache misses. Also prints every cached group,
* key and the data.

View File

@ -160,7 +160,7 @@ function get_comment_author_link( $comment_ID = 0 ) {
* Display the html link to the url of the author of the current comment.
*
* @since 0.71
* @see get_comment_author_link() Echos result
* @see get_comment_author_link() Echoes result
*
* @param int The ID of the comment for which to print the author's link. Optional.
*/
@ -187,7 +187,7 @@ function get_comment_author_IP( $comment_ID = 0 ) {
* Display the IP address of the author of the current comment.
*
* @since 0.71
* @see get_comment_author_IP() Echos Result
* @see get_comment_author_IP() Echoes Result
*
* @param int $comment_ID The ID of the comment for which to print the author's IP address. Optional.
*/
@ -257,7 +257,7 @@ function get_comment_author_url_link( $linktext = '', $before = '', $after = ''
* Displays the HTML link of the url of the author of the current comment.
*
* @since 0.71
* @see get_comment_author_url_link() Echos result
* @see get_comment_author_url_link() Echoes result
*
* @param string $linktext The text to display instead of the comment author's email address
* @param string $before The text or HTML to display before the email link.
@ -453,7 +453,7 @@ function get_comment_ID() {
* Displays the comment id of the current comment.
*
* @since 0.71
* @see get_comment_ID() Echos Result
* @see get_comment_ID() Echoes Result
*/
function comment_ID() {
echo get_comment_ID();

View File

@ -244,7 +244,7 @@ function wp_login_url($redirect = '', $force_reauth = false) {
}
/**
* Provides a simple login form for use anywhere within WordPress. By default, it echos
* Provides a simple login form for use anywhere within WordPress. By default, it echoes
* the HTML immediately. Pass array('echo'=>false) to return the string instead.
*
* @since 3.0.0