diff --git a/wp-includes/media.php b/wp-includes/media.php index a437926ae0..686964d841 100644 --- a/wp-includes/media.php +++ b/wp-includes/media.php @@ -168,7 +168,8 @@ function image_downsize( $id, $size = 'medium' ) { * * @param bool $downsize Whether to short-circuit the image downsize. Default false. * @param int $id Attachment ID for image. - * @param array|string $size Size of image, either array or string. Default 'medium'. + * @param array|string $size Size of image. Image size or array of width and height values (in that order). + * Default 'medium'. */ if ( $out = apply_filters( 'image_downsize', false, $id, $size ) ) { return $out; diff --git a/wp-includes/version.php b/wp-includes/version.php index f26b94c10d..60c76300eb 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-35034'; +$wp_version = '4.4-alpha-35035'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.