Correct the @param docs for arguments that are truthy/falsey.

See #30799.

Built from https://develop.svn.wordpress.org/trunk@30983


git-svn-id: http://core.svn.wordpress.org/trunk@30969 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor
2014-12-20 23:04:23 +00:00
parent 5eb5afac34
commit 786caa4d55
5 changed files with 21 additions and 21 deletions

View File

@@ -710,10 +710,10 @@ function meta_form( $post = null ) {
*
* @since 0.71
*
* @param int $edit Accepts 1|true for editing the date, 0|false for adding the date.
* @param int $for_post Accepts 1|true for applying the date to a post, 0|false for a comment.
* @param int $tab_index The tabindex attribute to add. Default 0.
* @param int $multi Optional. Whether the additional fields and buttons should be added.
* @param int|bool $edit Accepts 1|true for editing the date, 0|false for adding the date.
* @param int|bool $for_post Accepts 1|true for applying the date to a post, 0|false for a comment.
* @param int $tab_index The tabindex attribute to add. Default 0.
* @param int|bool $multi Optional. Whether the additional fields and buttons should be added.
* Default 0|false.
*/
function touch_time( $edit = 1, $for_post = 1, $tab_index = 0, $multi = 0 ) {