Fix the `wp_count_attachments()` PHPDoc to reflect that it returns an object, not array.

See #25412.

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


git-svn-id: http://core.svn.wordpress.org/trunk@27641 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2014-03-28 05:43:15 +00:00
parent eb146fd12d
commit cebbcd473c
1 changed files with 1 additions and 1 deletions

View File

@ -2161,7 +2161,7 @@ function wp_count_posts( $type = 'post', $perm = '' ) {
* @since 2.5.0
*
* @param string|array $mime_type Optional. Array or comma-separated list of MIME patterns.
* @return array Number of posts for each mime type.
* @return object An object containing the attachment counts by mime type.
*/
function wp_count_attachments( $mime_type = '' ) {
global $wpdb;