Docs: Fix hash notation syntax for the `$sizes[ $size ]` section in the DocBlock for `WP_Image_Editor_GD::multi_resize()`.

See #32246.

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


git-svn-id: http://core.svn.wordpress.org/trunk@35026 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2015-10-12 16:26:24 +00:00
parent ee544e44d5
commit 243f66836f
2 changed files with 6 additions and 4 deletions

View File

@ -219,9 +219,11 @@ class WP_Image_Editor_GD extends WP_Image_Editor {
* maintain aspect ratio according to the provided dimension.
*
* @type array $size {
* @type int ['width'] Optional. Image width.
* @type int ['height'] Optional. Image height.
* @type bool ['crop'] Optional. Whether to crop the image. Default false.
* Optional. Array of height, width values, and whether to crop.
*
* @type int $width Image width.
* @type int $height Image height.
* @type bool $crop Whether to crop the image. Default false.
* }
* }
* @return array An array of resized images' metadata by size.

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4-alpha-35060';
$wp_version = '4.4-alpha-35061';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.