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
This commit is contained in:
Jb Audras 2022-03-07 12:55:57 +00:00
parent 177c315c12
commit a66f7ef477

View File

@ -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 );