From 07b5588a8822aa71a10d6e2ea964f0a60cbac9f9 Mon Sep 17 00:00:00 2001 From: Jb Audras Date: Thu, 24 Aug 2023 09:06:52 +0000 Subject: [PATCH] Docs: Use third-person singular verbs in various function descriptions, as per docblocks standards. See #58833. git-svn-id: https://develop.svn.wordpress.org/trunk@56435 602fd350-edb4-49c9-b593-d223f7449a82 --- .../customize/class-wp-customize-themes-section.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/wp-includes/customize/class-wp-customize-themes-section.php b/src/wp-includes/customize/class-wp-customize-themes-section.php index f50f56153b..9d33a681d8 100644 --- a/src/wp-includes/customize/class-wp-customize-themes-section.php +++ b/src/wp-includes/customize/class-wp-customize-themes-section.php @@ -48,7 +48,7 @@ class WP_Customize_Themes_Section extends WP_Customize_Section { public $filter_type = 'local'; /** - * Get section parameters for JS. + * Gets section parameters for JS. * * @since 4.9.0 * @return array Exported parameters. @@ -62,7 +62,7 @@ class WP_Customize_Themes_Section extends WP_Customize_Section { } /** - * Render a themes section as a JS template. + * Renders a themes section as a JS template. * * The template is only rendered by PHP once, so all actions are prepared at once on the server side. * @@ -112,7 +112,7 @@ class WP_Customize_Themes_Section extends WP_Customize_Section { } /** - * Render the filter bar portion of a themes section as a JS template. + * Renders the filter bar portion of a themes section as a JS template. * * The template is only rendered by PHP once, so all actions are prepared at once on the server side. * The filter bar container is rendered by {@see render_template()}. @@ -177,7 +177,7 @@ class WP_Customize_Themes_Section extends WP_Customize_Section { } /** - * Render the filter drawer portion of a themes section as a JS template. + * Renders the filter drawer portion of a themes section as a JS template. * * The filter bar container is rendered by {@see render_template()}. *