You need something like:
function getCommentVoteValue( &$comment )
{
?>
<span class="vote-good">Liked by #<?php echo $comment->isgood; ?></span> / Don't liked by #<span class="vote-poor"><?php echo $comment->ispoor; ?></span>
<?php
}
Also you may need to adjust CSS styles for these elemets (may be you will need increase the width of the block).