This mistyping appeared in Modern 1.2 actually. There is no separator between Comments and first Category in meta on Archive page (see attachment).
Quick fix in archive.php
instead of <?php echo get_comments_number().' comments'; ?> <?php echo get_the_category_list(); ?>
categories have to be inside of the list scope <?php echo get_comments_number().' comments'; ?>
<?php echo get_the_category_list(); ?>
Secondly there is a new mistyping in the archive.php: extra apostrophe in the author's page link causes a double url.
a href="'<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"><?php echo get_the_author_meta( 'display_name' ); ?>