Change heading above comments
add_filter( 'genesis_title_comments', __NAMESPACE__ . '\change_comments_heading' );
/**
* Modify comments title text
*
* @since 1.0.0
*
* @return string
*/
function change_comments_heading() {
$title = '<h3>Recent Comments</h3>';
return $title;
}