Look for this in your index.php file:
<p class="postmetadata clear"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">Permalink</a> | Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
If you only want the comments to show, change it to this:
<p class="postmetadata clear"><?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>