diff --git a/core/modules/block_content/block_content.module b/core/modules/block_content/block_content.module
index 74fe9f1..6d37e7a 100644
--- a/core/modules/block_content/block_content.module
+++ b/core/modules/block_content/block_content.module
@@ -29,11 +29,11 @@ function block_content_help($route_name, RouteMatchInterface $route_match) {
       return $output;
 
     case 'entity.block_content.collection':
-      $output = '<p>' . t('Blocks in the block library belong to <a href=":types">block types</a>, each with its own fields and display settings. After creating a block, place it in a region from the <a href=":blocks">Block layout page</a>.', array(':types' => \Drupal::url('entity.block_content_type.collection'), ':blocks' => \Drupal::url('block.admin_display'))) . '</p>';
+      $output = '<p>' . t('This page provides a list of all custom blocks on the site and allows you to create, edit, and delete custom blocks of each custom block type you have defined, from the <a href=":custom-block-library">Custom block library page</a>.', array(':custom-block-library' => \Drupal::url('entity.block_content_type.collection'))) . '</p>';
       return $output;
 
     case 'entity.block_content_type.collection':
-      $output = '<p>' . t('Each block type has its own fields and display settings. Create blocks of each type on the <a href=":block-library">Block library page</a>.', array(':block-library' => \Drupal::url('entity.block_content.collection'))) . '</p>';
+      $output = '<p>' . t('This page provides a list of all custom block types on the site and allows you to create and edit custom block types with fields and display settings. Create blocks of each type on the <a href=":block-library">Block library page</a>.', array(':block-library' => \Drupal::url('entity.block_content.collection'))) . '</p>';
       return $output;
 
   }
