From 80ec1e60fb211c9cf9eeb437b3cf32c2f3ed8d0d Mon Sep 17 00:00:00 2001 From: Jb Audras Date: Thu, 20 Apr 2023 10:22:39 +0000 Subject: [PATCH] Docs: Use third-person singular verbs for `WP_Importer` related function descriptions, as per docblocks standards. Props pouicpouic. See #57840. git-svn-id: https://develop.svn.wordpress.org/branches/6.2@55663 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/class-wp-importer.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/wp-admin/includes/class-wp-importer.php b/src/wp-admin/includes/class-wp-importer.php index 4804c888b2..7694aed701 100644 --- a/src/wp-admin/includes/class-wp-importer.php +++ b/src/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