From a66f7ef47797b132b3958aec0951fa66031c2d18 Mon Sep 17 00:00:00 2001 From: Jb Audras Date: Mon, 7 Mar 2022 12:55:57 +0000 Subject: [PATCH] Docs: Correct the indentation in `delete_term_relationships` filter. See #54673. git-svn-id: https://develop.svn.wordpress.org/trunk@52826 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/taxonomy.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/taxonomy.php b/src/wp-includes/taxonomy.php index b7f303d3bc..17cd0b8fe4 100644 --- a/src/wp-includes/taxonomy.php +++ b/src/wp-includes/taxonomy.php @@ -2937,8 +2937,8 @@ function wp_remove_object_terms( $object_id, $terms, $taxonomy ) { * @since 2.9.0 * @since 4.7.0 Added the `$taxonomy` parameter. * - * @param int $object_id Object ID. - * @param array $tt_ids An array of term taxonomy IDs. + * @param int $object_id Object ID. + * @param array $tt_ids An array of term taxonomy IDs. * @param string $taxonomy Taxonomy slug. */ do_action( 'delete_term_relationships', $object_id, $tt_ids, $taxonomy );