From ed1421fa32bd0325e7a3ad6f6714419e8aad00d8 Mon Sep 17 00:00:00 2001 From: audrasjb Date: Fri, 14 Jan 2022 14:45:05 +0000 Subject: [PATCH] XML-RPC: Fix typos in some XMLRPC related docblocks. Props kebbet, shreyasikhar26. Fixes #54820. Built from https://develop.svn.wordpress.org/trunk@52575 git-svn-id: http://core.svn.wordpress.org/trunk@52165 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-xmlrpc-server.php | 16 ++++++++-------- wp-includes/version.php | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/wp-includes/class-wp-xmlrpc-server.php b/wp-includes/class-wp-xmlrpc-server.php index e031097de8..58388dd3d4 100644 --- a/wp-includes/class-wp-xmlrpc-server.php +++ b/wp-includes/class-wp-xmlrpc-server.php @@ -2271,11 +2271,11 @@ class wp_xmlrpc_server extends IXR_Server { * @param array $args { * Method arguments. Note: arguments must be ordered as documented. * - * @type int $blog_id Blog ID (unused). - * @type string $username Username. - * @type string $password Password. - * @type string $taxnomy_name Taxonomy name. - * @type int $term_id Term ID. + * @type int $blog_id Blog ID (unused). + * @type string $username Username. + * @type string $password Password. + * @type string $taxonomy_name Taxonomy name. + * @type int $term_id Term ID. * } * @return true|IXR_Error True on success, IXR_Error instance on failure. */ @@ -2344,7 +2344,7 @@ class wp_xmlrpc_server extends IXR_Server { * @type int $blog_id Blog ID (unused). * @type string $username Username. * @type string $password Password. - * @type string $taxnomy Taxonomy name. + * @type string $taxonomy Taxonomy name. * @type string $term_id Term ID. * } * @return array|IXR_Error IXR_Error on failure, array on success, containing: @@ -2417,7 +2417,7 @@ class wp_xmlrpc_server extends IXR_Server { * @type int $blog_id Blog ID (unused). * @type string $username Username. * @type string $password Password. - * @type string $taxnomy Taxonomy name. + * @type string $taxonomy Taxonomy name. * @type array $filter Optional. Modifies the query used to retrieve posts. Accepts 'number', * 'offset', 'orderby', 'order', 'hide_empty', and 'search'. Default empty array. * } @@ -2509,7 +2509,7 @@ class wp_xmlrpc_server extends IXR_Server { * @type int $blog_id Blog ID (unused). * @type string $username Username. * @type string $password Password. - * @type string $taxnomy Taxonomy name. + * @type string $taxonomy Taxonomy name. * @type array $fields Optional. Array of taxonomy fields to limit to in the return. * Accepts 'labels', 'cap', 'menu', and 'object_type'. * Default empty array. diff --git a/wp-includes/version.php b/wp-includes/version.php index fb36101e2d..f2ed1eb1b1 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.0-alpha-52574'; +$wp_version = '6.0-alpha-52575'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.