From 2d6a7724002f158b5739a453278942aca75cbfc4 Mon Sep 17 00:00:00 2001 From: Andrew Ozz Date: Sat, 7 Sep 2019 02:12:55 +0000 Subject: [PATCH] Fix "white spaces at end of line" in docblock (IDE) woes after [46077]. See #32437. Built from https://develop.svn.wordpress.org/trunk@46078 git-svn-id: http://core.svn.wordpress.org/trunk@45890 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 4 ++-- wp-includes/media.php | 2 +- wp-includes/version.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index ab86835314..a58144f843 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -7319,11 +7319,11 @@ function is_php_version_compatible( $required ) { /** * Check if two numbers are nearly the same. - * + * * This is similar to using `round()` but the precision is more fine-grained. * * @since 5.3.0 - * + * * @param int|float $expected The expected value. * @param int|float $actual The actual number. * @param int|float $precision The allowed variation. diff --git a/wp-includes/media.php b/wp-includes/media.php index 76fa325919..6a073ffd57 100644 --- a/wp-includes/media.php +++ b/wp-includes/media.php @@ -622,7 +622,7 @@ function image_resize_dimensions( $orig_w, $orig_h, $dest_w, $dest_h, $crop = fa * with the original/source image. Differences of 1px may be due to rounding and are ignored. * * @since 5.3.0 - * + * * @param bool The filtered value. * @param int Original image width. * @param int Original image height. diff --git a/wp-includes/version.php b/wp-includes/version.php index 1f5b58de20..1c7b8f2a51 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-46077'; +$wp_version = '5.3-alpha-46078'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.