diff --git a/src/wp-includes/class-walker-comment.php b/src/wp-includes/class-walker-comment.php
index e7498b3dd6..280b4a98c5 100644
a
|
b
|
class Walker_Comment extends Walker { |
375 | 375 | printf( |
376 | 376 | /* translators: %s: Comment author link. */ |
377 | 377 | __( '%s <span class="says">says:</span>' ), |
378 | | sprintf( '<b class="fn">%s</b>', get_comment_author_link( $comment ) ) |
| 378 | sprintf( '<strong class="fn">%s</strong>', get_comment_author_link( $comment ) ) |
379 | 379 | ); |
380 | 380 | ?> |
381 | 381 | </div><!-- .comment-author --> |