According to The codex the filter bloginfo_rss should pass a second argument, $show, that tells exactly what blog info is called.
However, in feed.php:
function bloginfo_rss($show = '') {
echo apply_filters('bloginfo_rss', get_bloginfo_rss($show));
}
Only the content argument is passed.
As expected, when trying to use the second argument in the filter function, I receive a warning: Missing argument 2.
I'm aware that one way to solve this is to remove the wrong part from the codex, but I'm hpoing more towards actually having that feature, becuase right now it makes it impossible for me to filter only bloginfo_rss('name'), for example.