diff -u b/core/modules/comment/comment.module b/core/modules/comment/comment.module --- b/core/modules/comment/comment.module +++ b/core/modules/comment/comment.module @@ -257,8 +257,8 @@ * * @return array * An array as expected by drupal_render(). - * @deprecated in Drupal 8.0.x-dev, will be removed before Drupal 9.0 - * entity_view() should be used instead + * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * Use entity_view() instead. */ function comment_view(CommentInterface $comment, $view_mode = 'full', $langcode = NULL) { return entity_view($comment, $view_mode, $langcode); @@ -280,8 +280,8 @@ * An array in the format expected by drupal_render(). * * @see drupal_render() - * @deprecated in Drupal 8.0.x-dev, will be removed before Drupal 9.0 - * entity_view_multiple() should be used instead + * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. + * Use entity_view() instead. */ function comment_view_multiple($comments, $view_mode = 'full', $langcode = NULL) { return entity_view_multiple($comments, $view_mode, $langcode);