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

See #30799.


git-svn-id: https://develop.svn.wordpress.org/trunk@30983 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Scott Taylor
2014-12-20 23:03:21 +00:00
parent 218dd4fd6b
commit 44fe0ebf75
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 ) {