From bac638e6109db8d1e4f5d327db7e95d2a0c4bbf3 Mon Sep 17 00:00:00 2001 From: audrasjb Date: Thu, 16 Jun 2022 23:39:08 +0000 Subject: [PATCH] Docs: Use third-person singular verbs for function descriptions in the Taxonomy Administration API. See #55646. Built from https://develop.svn.wordpress.org/trunk@53516 git-svn-id: http://core.svn.wordpress.org/trunk@53105 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/taxonomy.php | 18 +++++++++--------- wp-includes/version.php | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/wp-admin/includes/taxonomy.php b/wp-admin/includes/taxonomy.php index efa152c947..2326e9eb50 100644 --- a/wp-admin/includes/taxonomy.php +++ b/wp-admin/includes/taxonomy.php @@ -11,7 +11,7 @@ // /** - * Check whether a category exists. + * Checks whether a category exists. * * @since 2.0.0 * @@ -30,7 +30,7 @@ function category_exists( $cat_name, $category_parent = null ) { } /** - * Get category object for given ID and 'edit' filter context. + * Gets category object for given ID and 'edit' filter context. * * @since 2.0.0 * @@ -44,7 +44,7 @@ function get_category_to_edit( $id ) { } /** - * Add a new category to the database if it does not already exist. + * Adds a new category to the database if it does not already exist. * * @since 2.0.0 * @@ -67,7 +67,7 @@ function wp_create_category( $cat_name, $category_parent = 0 ) { } /** - * Create categories for the given post. + * Creates categories for the given post. * * @since 2.0.0 * @@ -210,7 +210,7 @@ function wp_update_category( $catarr ) { // /** - * Check whether a post tag with a given name exists. + * Checks whether a post tag with a given name exists. * * @since 2.3.0 * @@ -224,7 +224,7 @@ function tag_exists( $tag_name ) { } /** - * Add a new tag to the database if it does not already exist. + * Adds a new tag to the database if it does not already exist. * * @since 2.3.0 * @@ -236,7 +236,7 @@ function wp_create_tag( $tag_name ) { } /** - * Get comma-separated list of tags available to edit. + * Gets comma-separated list of tags available to edit. * * @since 2.3.0 * @@ -249,7 +249,7 @@ function get_tags_to_edit( $post_id, $taxonomy = 'post_tag' ) { } /** - * Get comma-separated list of terms available to edit for the given post ID. + * Gets comma-separated list of terms available to edit for the given post ID. * * @since 2.8.0 * @@ -298,7 +298,7 @@ function get_terms_to_edit( $post_id, $taxonomy = 'post_tag' ) { } /** - * Add a new term to the database if it does not already exist. + * Adds a new term to the database if it does not already exist. * * @since 2.8.0 * diff --git a/wp-includes/version.php b/wp-includes/version.php index 9a7259e876..0ec71e4222 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-53515'; +$wp_version = '6.1-alpha-53516'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.