From 2c7b5c37dbc15aa554be6e773d39bb7feb88eca5 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 16 Nov 2020 17:26:42 +0000 Subject: [PATCH] Docs: Fix typo in `wp_get_object_terms` filter DocBlock. Follow-up to [49597]. See #50768. git-svn-id: https://develop.svn.wordpress.org/trunk@49612 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/taxonomy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/taxonomy.php b/src/wp-includes/taxonomy.php index 7c8463cf00..5bcfd5d707 100644 --- a/src/wp-includes/taxonomy.php +++ b/src/wp-includes/taxonomy.php @@ -2145,7 +2145,7 @@ function wp_get_object_terms( $object_ids, $taxonomies, $args = array() ) { * @since 2.8.0 * * @param WP_Term[] $terms Array of terms for the given object or objects. - * @param string $object_ids Comma separated list if object IDs for which terms were retrieved. + * @param string $object_ids Comma separated list of object IDs for which terms were retrieved. * @param string $taxonomies SQL fragment of taxonomy names from which terms were retrieved. * @param array $args Array of arguments for retrieving terms for the given * object(s). See wp_get_object_terms() for details.