diff --git a/core/modules/block/block.module b/core/modules/block/block.module
index 5d1396a..d3c5af5 100644
--- a/core/modules/block/block.module
+++ b/core/modules/block/block.module
@@ -288,7 +288,7 @@ function block_menu_delete(Menu $menu) {
 }
 
 /**
- * Implements hook_ENTITY_TYPE_delete() for 'configurable_language'.
+ * Implements hook_ENTITY_TYPE_delete() for configurable_language entities.
  *
  * Delete the potential block visibility settings of the deleted language.
  */
diff --git a/core/modules/book/book.module b/core/modules/book/book.module
index a11f74d..bdf968e 100644
--- a/core/modules/book/book.module
+++ b/core/modules/book/book.module
@@ -301,7 +301,7 @@ function book_node_predelete(EntityInterface $node) {
 }
 
 /**
- * Implements hook_node_prepare_form().
+ * Implements hook_ENTITY_TYPE_prepare_form() for node entities.
  */
 function book_node_prepare_form(NodeInterface $node, $operation, FormStateInterface $form_state) {
   /** @var \Drupal\book\BookManagerInterface $book_manager */
diff --git a/core/modules/comment/comment.module b/core/modules/comment/comment.module
index 32a6e32..8e32453 100644
--- a/core/modules/comment/comment.module
+++ b/core/modules/comment/comment.module
@@ -169,7 +169,7 @@ function comment_field_config_update(FieldConfigInterface $field) {
 }
 
 /**
- * Implements hook_ENTITY_TYPE_insert() for 'field_storage_config'.
+ * Implements hook_ENTITY_TYPE_insert() for field_storage_config entities.
  */
 function comment_field_storage_config_insert(FieldStorageConfigInterface $field_storage) {
   if ($field_storage->getType() == 'comment') {
diff --git a/core/modules/config/tests/config_entity_static_cache_test/config_entity_static_cache_test.module b/core/modules/config/tests/config_entity_static_cache_test/config_entity_static_cache_test.module
index 0273cc6..b7fb6a1 100644
--- a/core/modules/config/tests/config_entity_static_cache_test/config_entity_static_cache_test.module
+++ b/core/modules/config/tests/config_entity_static_cache_test/config_entity_static_cache_test.module
@@ -23,7 +23,7 @@ function config_entity_static_cache_test_config_test_load($entities) {
 }
 
 /**
- * Implements hook_entity_type_alter().
+ * Implements hook_entity_type_alter() for config_test entities.
  */
 function config_entity_static_cache_test_entity_type_alter(array &$entity_types) {
   /** @var $entity_types \Drupal\Core\Entity\EntityTypeInterface[] */
diff --git a/core/modules/config/tests/config_test/config_test.module b/core/modules/config/tests/config_test/config_test.module
index d7742d0..28caa7f 100644
--- a/core/modules/config/tests/config_test/config_test.module
+++ b/core/modules/config/tests/config_test/config_test.module
@@ -29,7 +29,7 @@ function config_test_cache_flush() {
 }
 
 /**
- * Implements hook_ENTITY_TYPE_create().
+ * Implements hook_ENTITY_TYPE_create() for config_test entities.
  */
 function config_test_config_test_create(ConfigTest $config_test) {
   if (\Drupal::state()->get('config_test.prepopulate')) {
diff --git a/core/modules/entity_reference/entity_reference.module b/core/modules/entity_reference/entity_reference.module
index 6374998..9b3707e 100644
--- a/core/modules/entity_reference/entity_reference.module
+++ b/core/modules/entity_reference/entity_reference.module
@@ -64,7 +64,7 @@ function entity_reference_field_widget_info_alter(&$info) {
 }
 
 /**
- * Implements hook_ENTITY_TYPE_update() for 'field_storage_config'.
+ * Implements hook_ENTITY_TYPE_update() for field_storage_config entities.
  *
  * Reset the instance handler settings, when the target type is changed.
  */
diff --git a/core/modules/image/image.module b/core/modules/image/image.module
index dfa54c6..e93b666 100644
--- a/core/modules/image/image.module
+++ b/core/modules/image/image.module
@@ -360,7 +360,7 @@ function image_entity_presave(EntityInterface $entity) {
 }
 
 /**
- * Implements hook_ENTITY_TYPE_update() for 'field_storage_config'.
+ * Implements hook_ENTITY_TYPE_update() for field_storage_config entities.
  */
 function image_field_storage_config_update(FieldStorageConfigInterface $field_storage) {
   if ($field_storage->type != 'image') {
@@ -438,7 +438,7 @@ function image_field_config_update(FieldConfigInterface $field) {
 }
 
 /**
- * Implements hook_ENTITY_TYPE_delete() for 'field_storage_config'.
+ * Implements hook_ENTITY_TYPE_delete() for field_storage_config entities.
  */
 function image_field_storage_config_delete(FieldStorageConfigInterface $field) {
   if ($field->type != 'image') {
diff --git a/core/modules/language/language.module b/core/modules/language/language.module
index d0b9aab..2ba2441 100644
--- a/core/modules/language/language.module
+++ b/core/modules/language/language.module
@@ -396,7 +396,7 @@ function language_modules_uninstalled($modules) {
 }
 
 /**
- * Implements hook_ENTITY_TYPE_insert() for 'configurable_language'.
+ * Implements hook_ENTITY_TYPE_insert() for configurable_language entities.
  */
 function language_configurable_language_insert(ConfigurableLanguageInterface $language) {
   if ($language->isLocked()) {
@@ -410,7 +410,7 @@ function language_configurable_language_insert(ConfigurableLanguageInterface $la
 }
 
 /**
- * Implements hook_ENTITY_TYPE_delete() for 'configurable_language'.
+ * Implements hook_ENTITY_TYPE_delete() for configurable_language entities.
  */
 function language_configurable_language_delete(ConfigurableLanguageInterface $language) {
   // Remove language from language prefix list.
diff --git a/core/modules/locale/locale.module b/core/modules/locale/locale.module
index 52a5eb9..6183ff2 100644
--- a/core/modules/locale/locale.module
+++ b/core/modules/locale/locale.module
@@ -192,7 +192,7 @@ function locale_theme() {
 }
 
 /**
- * Implements hook_ENTITY_TYPE_insert() for 'configurable_language'.
+ * Implements hook_ENTITY_TYPE_insert() for configurable_language entities.
  */
 function locale_configurable_language_insert(ConfigurableLanguageInterface $language) {
   // @todo move these two cache clears out. See http://drupal.org/node/1293252
@@ -203,7 +203,7 @@ function locale_configurable_language_insert(ConfigurableLanguageInterface $lang
 }
 
 /**
- * Implements hook_ENTITY_TYPE_update() for 'configurable_language'.
+ * Implements hook_ENTITY_TYPE_update() for configurable_language entities.
  */
 function locale_configurable_language_update(ConfigurableLanguageInterface $language) {
   // @todo move these two cache clears out. See http://drupal.org/node/1293252
@@ -214,7 +214,7 @@ function locale_configurable_language_update(ConfigurableLanguageInterface $lang
 }
 
 /**
- * Implements hook_ENTITY_TYPE_delete() for 'configurable_language'.
+ * Implements hook_ENTITY_TYPE_delete() for configurable_language entities.
  */
 function locale_configurable_language_delete(ConfigurableLanguageInterface $language) {
   // Remove translations.
diff --git a/core/modules/menu_ui/menu_ui.module b/core/modules/menu_ui/menu_ui.module
index 3656e5f..ad8ec5f 100644
--- a/core/modules/menu_ui/menu_ui.module
+++ b/core/modules/menu_ui/menu_ui.module
@@ -140,7 +140,7 @@ function menu_ui_node_update(EntityInterface $node) {
 }
 
 /**
- * Helper for hook_ENTITY_TYPE_insert() and hook_ENTITY_TYPE_update() for nodes.
+ * Helper for hook_ENTITY_TYPE_insert() and hook_ENTITY_TYPE_update() for node entities.
  */
 function menu_ui_node_save(EntityInterface $node) {
   if (!empty($node->menu)) {
@@ -196,7 +196,7 @@ function menu_ui_node_predelete(EntityInterface $node) {
 }
 
 /**
- * Implements hook_node_prepare_form().
+ * Implements hook_ENTITY_TYPE_prepare_form() for node entities.
  */
 function menu_ui_node_prepare_form(NodeInterface $node, $operation, FormStateInterface $form_state) {
   if (!$form_state->get('menu_link_definition')) {
diff --git a/core/modules/node/node.module b/core/modules/node/node.module
index a1f2c3b..097ba3e 100644
--- a/core/modules/node/node.module
+++ b/core/modules/node/node.module
@@ -1298,7 +1298,7 @@ function node_modules_uninstalled($modules) {
 }
 
 /**
- * Implements hook_ENTITY_TYPE_delete() for 'configurable_language'.
+ * Implements hook_ENTITY_TYPE_delete() for configurable_language entities.
  */
 function node_configurable_language_delete(ConfigurableLanguageInterface $language) {
   // On nodes with this language, unset the language.
diff --git a/core/modules/node/src/Tests/NodeEntityViewModeAlterTest.php b/core/modules/node/src/Tests/NodeEntityViewModeAlterTest.php
index 232fde7..1cd62a3 100644
--- a/core/modules/node/src/Tests/NodeEntityViewModeAlterTest.php
+++ b/core/modules/node/src/Tests/NodeEntityViewModeAlterTest.php
@@ -15,7 +15,7 @@
 class NodeEntityViewModeAlterTest extends NodeTestBase {
 
   /**
-   * Enable dummy module that implements hook_ENTITY_TYPE_view() for nodes.
+   * Enable dummy module that implements hook_ENTITY_TYPE_view() for node entities.
    */
   public static $modules = array('node_test');
 
diff --git a/core/modules/options/options.module b/core/modules/options/options.module
index 54cf4b3..98fe0b2 100644
--- a/core/modules/options/options.module
+++ b/core/modules/options/options.module
@@ -34,14 +34,14 @@ function options_help($route_name, RouteMatchInterface $route_match) {
 }
 
 /**
- * Implements hook_ENTITY_TYPE_update() for 'field_storage_config'.
+ * Implements hook_ENTITY_TYPE_update() for field_storage_config entities.
  */
 function options_field_storage_config_update(FieldStorageConfigInterface $field_storage) {
   drupal_static_reset('options_allowed_values');
 }
 
 /**
- * Implements hook_ENTITY_TYPE_delete() for 'field_storage_config'.
+ * Implements hook_ENTITY_TYPE_delete() for field_storage_config entities.
  */
 function options_field_storage_config_delete(FieldStorageConfigInterface $field_storage) {
   drupal_static_reset('options_allowed_values');
diff --git a/core/modules/system/tests/modules/entity_test/entity_test.module b/core/modules/system/tests/modules/entity_test/entity_test.module
index f56a27e..a1cb56c 100644
--- a/core/modules/system/tests/modules/entity_test/entity_test.module
+++ b/core/modules/system/tests/modules/entity_test/entity_test.module
@@ -317,7 +317,7 @@ function entity_test_mulrev_load($id, $reset = FALSE) {
 }
 
 /**
- * Implements hook_ENTITY_TYPE_insert().
+ * Implements hook_ENTITY_TYPE_insert() for entity_test entities.
  */
 function entity_test_entity_test_insert($entity) {
   if ($entity->name->value == 'fail_insert') {
@@ -425,14 +425,14 @@ function entity_test_entity_translation_delete(EntityInterface $translation) {
 }
 
 /**
- * Implements hook_ENTITY_TYPE_translation_insert().
+ * Implements hook_ENTITY_TYPE_translation_insert() for entity_test_mul entities.
  */
 function entity_test_entity_test_mul_translation_insert(EntityInterface $translation) {
   _entity_test_record_hooks('entity_test_mul_translation_insert', $translation->language()->getId());
 }
 
 /**
- * Implements hook_ENTITY_TYPE_translation_delete().
+ * Implements hook_ENTITY_TYPE_translation_delete() for entity_test_mul entities.
  */
 function entity_test_entity_test_mul_translation_delete(EntityInterface $translation) {
   _entity_test_record_hooks('entity_test_mul_translation_delete', $translation->language()->getId());
@@ -549,7 +549,7 @@ function entity_test_entity_access(EntityInterface $entity, $operation, AccountI
 }
 
 /**
- * Implements hook_ENTITY_TYPE_access().
+ * Implements hook_ENTITY_TYPE_access() for entity_test entities.
  */
 function entity_test_entity_test_access(EntityInterface $entity, $operation, AccountInterface $account, $langcode) {
   \Drupal::state()->set('entity_test_entity_test_access', TRUE);
@@ -569,7 +569,7 @@ function entity_test_entity_create_access(AccountInterface $account, $context, $
 }
 
 /**
- * Implements hook_ENTITY_TYPE_create_access().
+ * Implements hook_ENTITY_TYPE_create_access() for entity_test entities.
  */
 function entity_test_entity_test_create_access(AccountInterface $account, $context, $entity_bundle) {
   \Drupal::state()->set('entity_test_entity_test_create_access', TRUE);
diff --git a/core/modules/tour/tests/tour_test/tour_test.module b/core/modules/tour/tests/tour_test/tour_test.module
index 69a9a54..7ec75a4 100644
--- a/core/modules/tour/tests/tour_test/tour_test.module
+++ b/core/modules/tour/tests/tour_test/tour_test.module
@@ -8,7 +8,7 @@
 use Drupal\Core\Entity\EntityInterface;
 
 /**
- * Implements hook_ENTITY_TYPE_load() for tour.
+ * Implements hook_ENTITY_TYPE_load() for tour entities.
  */
 function tour_test_tour_load($entities) {
   if (isset($entities['tour-entity-create-test-en'])) {
@@ -17,7 +17,7 @@ function tour_test_tour_load($entities) {
 }
 
 /**
- * Implements hook_ENTITY_TYPE_presave() for tour.
+ * Implements hook_ENTITY_TYPE_presave() for tour entities.
  */
 function tour_test_tour_presave($entity) {
   if ($entity->id() == 'tour-entity-create-test-en') {
