This page redirects to an external site: https://developer.wordpress.org/reference/hooks/edited_terms/
The edited_terms action is used to hook into code after a term is updated in the database.
A plugin (or theme) can register an action hook from the example below.
<?php
add_action( 'edited_terms', 'do_something_after_update', 10, 2 );
function do_something_after_update( $term_id, $taxonomy ) {
// do something after update
}
?>