The code below goes in your template.php and removes the "More information about formatting options" link.
<?php
/**
* Remove the comment filters' tips
*/
function MyThemeName_filter_tips($tips, $long = FALSE, $extra = '') {
return '';
}
/**
* Remove the comment filter's more information tips link
*/
function MyThemeName_filter_tips_more_info () {
return '';
}
?>
Please remember to clear the cache in order for the changes to trigger.