From 8b76312eb38d9fb7f2932c41edbec0291cb2b974 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 4 Nov 2019 09:37:02 +0000 Subject: [PATCH] Docs: Correct some array hash notations added in [46644]. See #48303. Built from https://develop.svn.wordpress.org/trunk@46647 git-svn-id: http://core.svn.wordpress.org/trunk@46447 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/image.php | 2 +- wp-includes/embed.php | 2 +- wp-includes/version.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/includes/image.php b/wp-admin/includes/image.php index a22bf124e9..b2664264e9 100644 --- a/wp-admin/includes/image.php +++ b/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/wp-includes/embed.php b/wp-includes/embed.php index 8472ca7368..13c779a490 100644 --- a/wp-includes/embed.php +++ b/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. */ diff --git a/wp-includes/version.php b/wp-includes/version.php index c26f152664..c8a172ea48 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.4-alpha-46646'; +$wp_version = '5.4-alpha-46647'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.