From 09815e007d705957b8db3c0bdd37dd8b9fb68038 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 17 Nov 2023 15:33:21 +0000 Subject: [PATCH] Docs: Fix typo in `get_image_tag()` DocBlock. Follow-up to [54173]. Props kitchin. See #55646, #59651. Built from https://develop.svn.wordpress.org/trunk@57121 git-svn-id: http://core.svn.wordpress.org/trunk@56632 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/media.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/media.php b/wp-includes/media.php index 5408ad8957..224d8a18ca 100644 --- a/wp-includes/media.php +++ b/wp-includes/media.php @@ -378,7 +378,7 @@ function set_post_thumbnail_size( $width = 0, $height = 0, $crop = false ) { * @param string $align Part of the class name for aligning the image. * @param string|int[] $size Optional. Image size. Accepts any registered image size name, or an array of * width and height values in pixels (in that order). Default 'medium'. - * @return string HTML IMG element for given image attachment? + * @return string HTML IMG element for given image attachment. */ function get_image_tag( $id, $alt, $title, $align, $size = 'medium' ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 3c099fa56f..40b2574956 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.5-alpha-57120'; +$wp_version = '6.5-alpha-57121'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.