From ec5f1035feaf8663a4175553a871ccb705d5d971 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 4 Nov 2019 09:35:59 +0000 Subject: [PATCH] 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 --- src/wp-admin/includes/image.php | 2 +- src/wp-includes/embed.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-admin/includes/image.php b/src/wp-admin/includes/image.php index a22bf124e9..b2664264e9 100644 --- a/src/wp-admin/includes/image.php +++ b/src/wp-admin/includes/image.php @@ -248,7 +248,7 @@ function wp_create_image_subsizes( $file, $attachment_id ) { * Indexed array of the image width and height in pixels. * * @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 int $attachment_id Attachment post ID. diff --git a/src/wp-includes/embed.php b/src/wp-includes/embed.php index 1588c68099..2646a05556 100644 --- a/src/wp-includes/embed.php +++ b/src/wp-includes/embed.php @@ -80,7 +80,7 @@ function wp_embed_defaults( $url = '' ) { * Indexed array of the embed width and height in pixels. * * @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. */