From 1e3d9b80077bc81d4e81dda01f5f4d29f170f178 Mon Sep 17 00:00:00 2001 From: audrasjb Date: Thu, 20 Apr 2023 10:24:20 +0000 Subject: [PATCH] Docs: Use third-person singular verbs for `WP_Importer` related function descriptions, as per docblocks standards. Props pouicpouic. See #57840. Built from https://develop.svn.wordpress.org/branches/6.2@55663 git-svn-id: http://core.svn.wordpress.org/branches/6.2@55175 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-importer.php | 14 +++++++------- wp-includes/version.php | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/wp-admin/includes/class-wp-importer.php b/wp-admin/includes/class-wp-importer.php index 4804c888b2..7694aed701 100644 --- a/wp-admin/includes/class-wp-importer.php +++ b/wp-admin/includes/class-wp-importer.php @@ -10,7 +10,7 @@ class WP_Importer { public function __construct() {} /** - * Returns array with imported permalinks from WordPress database + * Returns array with imported permalinks from WordPress database. * * @global wpdb $wpdb WordPress database abstraction object. * @@ -47,7 +47,7 @@ class WP_Importer { } /** - * Return count of imported permalinks from WordPress database + * Returns count of imported permalinks from WordPress database. * * @global wpdb $wpdb WordPress database abstraction object. * @@ -74,7 +74,7 @@ class WP_Importer { } /** - * Set array with imported comments from WordPress database + * Sets array with imported comments from WordPress database. * * @global wpdb $wpdb WordPress database abstraction object. * @@ -176,7 +176,7 @@ class WP_Importer { } /** - * Sort by strlen, longest string first + * Sorts by strlen, longest string first. * * @param string $a * @param string $b @@ -214,7 +214,7 @@ class WP_Importer { } /** - * Bump up the request timeout for http requests + * Bumps up the request timeout for http requests. * * @param int $val * @return int @@ -224,7 +224,7 @@ class WP_Importer { } /** - * Check if user has exceeded disk quota + * Checks if user has exceeded disk quota. * * @return bool */ @@ -239,7 +239,7 @@ class WP_Importer { } /** - * Replace newlines, tabs, and multiple spaces with a single space. + * Replaces newlines, tabs, and multiple spaces with a single space. * * @param string $text * @return string diff --git a/wp-includes/version.php b/wp-includes/version.php index ed06da706b..86a5ce4c6d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.2.1-alpha-55662'; +$wp_version = '6.2.1-alpha-55663'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.