How to append the excerpt to the content in the single post page?

Here is how I did it:

function after_post_content($content){
if (is_single()) {  
    $content .= the_excerpt();
}
    return $content;
}
add_filter( "the_content", "after_post_content");