diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkDelete.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkDelete.php
index fb46718..23c96de 100644
--- a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkDelete.php
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkDelete.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Plugin\views\field\LinkDelete.
+ * Contains \Drupal\comment\Plugin\views\field\LinkDelete.
  */
 
 namespace Drupal\comment\Plugin\views\field;
@@ -10,7 +10,7 @@
 use Drupal\Component\Annotation\PluginID;
 
 /**
- * Field handler to present a link to delete a node.
+ * Field handler to present a link to delete a comment.
  *
  * @ingroup views_field_handlers
  *
diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkEdit.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkEdit.php
index a32b112..d77b824 100644
--- a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkEdit.php
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkEdit.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Plugin\views\field\LinkEdit.
+ * Contains \Drupal\comment\Plugin\views\field\LinkEdit.
  */
 
 namespace Drupal\comment\Plugin\views\field;
@@ -10,7 +10,7 @@
 use Drupal\Component\Annotation\PluginID;
 
 /**
- * Field handler to present a link node edit.
+ * Field handler to present a link to edit a comment.
  *
  * @ingroup views_field_handlers
  *
@@ -39,7 +39,7 @@ public function buildOptionsForm(&$form, &$form_state) {
 
   function render_link($data, $values) {
     parent::render_link($data, $values);
-    // ensure user has access to edit this comment.
+    // Ensure user has access to edit this comment.
     $comment = $this->getValue($values);
     if (!$comment->access('update')) {
       return;
diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkReply.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkReply.php
index ad0d5bf..112462f 100644
--- a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkReply.php
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkReply.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Plugin\views\field\LinkReply.
+ * Contains \Drupal\comment\Plugin\views\field\LinkReply.
  */
 
 namespace Drupal\comment\Plugin\views\field;
@@ -10,7 +10,7 @@
 use Drupal\Component\Annotation\PluginID;
 
 /**
- * Field handler to present a link to delete a node.
+ * Field handler to present a link to reply to a comment.
  *
  * @ingroup views_field_handlers
  *
