This page redirects to an external site: https://developer.wordpress.org/reference/hooks/wp_insert_comment/
<?php
add_action('wp_insert_comment','comment_inserted',99,2);
function comment_inserted($comment_id, $comment_object) {
if ($comment_object->comment_parent > 0) {
//do something
}
}
?>
wp_insert_comment action hook is located in wp-includes/comment.php