Here is what it says. Any suggestions of what I should change or add?
<!-- start editing here -->
<?php if ($comments) : ?>
<h3 id="comments"><?php comments_number(COMMENT_BUTTON_TEXT_ADD_COMMENT, COMMENT_BUTTON_TEXT_ONE_COMMENT, COMMENT_BUTTON_TEXT_MULTIPLE_COMMENT );?></h3>
<div class="commentlist">
<?php foreach ($comments as $comment) : ?>
<div <?php echo $oddcomment; ?>id="comment-<?php comment_ID() ?>">
<table width="100%" border="0" cellpadding="2" cellspacing="2">
<tbody>
<tr>
<td width="30%" valign="top"><div align="center"><b><?php comment_author_link() ?></b>
<?php echo get_avatar( $comment, 32 ); ?></div></td>
<td width="70%" valign="top"><span style="text-transform: uppercase;"><small><?php comment_date('F jS, Y') ?></small> <small class="commentmetadata"><?php comment_time() ?></small></span> <!--<small><?php edit_comment_link('edit comment',' ',''); ?></small>-->
<?php if ($comment->comment_approved == '0') : ?>
<?php echo COMMENT_AWAITING_MODERATION_TEXT; ?>
<?php endif; ?>
<?php comment_text() ?></td>
</tr>
</tbody>
</table>
</div>
<?php
/* changes every other comment to a different class */
$oddcomment = ( empty( $oddcomment ) ) ? 'class="alt" ' : '';
?>