Docs: Correct some array hash notations added in [46644].

See #48303.

git-svn-id: https://develop.svn.wordpress.org/trunk@46647 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2019-11-04 09:35:59 +00:00
parent a104c82526
commit ec5f1035fe
2 changed files with 2 additions and 2 deletions

View File

@ -248,7 +248,7 @@ function wp_create_image_subsizes( $file, $attachment_id ) {
* Indexed array of the image width and height in pixels. * Indexed array of the image width and height in pixels.
* *
* @type int $0 The image width. * @type int $0 The image width.
* @type int $0 The image height. * @type int $1 The image height.
* } * }
* @param string $file Full path to the uploaded image file. * @param string $file Full path to the uploaded image file.
* @param int $attachment_id Attachment post ID. * @param int $attachment_id Attachment post ID.

View File

@ -80,7 +80,7 @@ function wp_embed_defaults( $url = '' ) {
* Indexed array of the embed width and height in pixels. * Indexed array of the embed width and height in pixels.
* *
* @type int $0 The embed width. * @type int $0 The embed width.
* @type int $0 The embed height. * @type int $1 The embed height.
* } * }
* @param string $url The URL that should be embedded. * @param string $url The URL that should be embedded.
*/ */