diff --git a/core/modules/block_place/block_place.info.yml b/core/modules/block_place/block_place.info.yml
index 8ae7226..96ba64f 100644
--- a/core/modules/block_place/block_place.info.yml
+++ b/core/modules/block_place/block_place.info.yml
@@ -1,6 +1,6 @@
 name: Place Blocks
 type: module
-description: 'Allow administrators to place blocks from any Drupal page'
+description: 'Allows administrators to place blocks from any page'
 package: Core (Experimental)
 version: VERSION
 core: 8.x
diff --git a/core/modules/block_place/block_place.module b/core/modules/block_place/block_place.module
index 7fe86a6..6609e02 100644
--- a/core/modules/block_place/block_place.module
+++ b/core/modules/block_place/block_place.module
@@ -15,9 +15,13 @@ function block_place_help($route_name, RouteMatchInterface $route_match) {
   switch ($route_name) {
     case 'help.page.block_place':
       $output = '<h3>' . t('About') . '</h3>';
-      $output .= '<p>' . t('The Place Blocks module allows you to place blocks from every page. For more information, see the <a href=":blocks-documentation">online documentation for the Place Blocks module</a>.', [':blocks-documentation' => 'https://www.drupal.org/documentation/modules/block_place/']) . '</p>';
+      $output .= '<p>' . t('The Place Blocks module allows you to place blocks from every page except the admin page. For more information, see the <a href=":blocks-documentation">online documentation for the Place Blocks module</a>.', [':blocks-documentation' => 'https://https://www.drupal.org/docs/8/core/modules/block/overview']) . '</p>';
+      $output .= '<p>' . t('To add a block : Administer >> Structure >> Blocks >> Add.') . '</p>';
+      $output .= '<p>' . t('It can also be used for making API changes. For more information, see the <a href=":API-blocks-documentation">online documentation = the API Blocks module</a>.', [':API-blocks-documentation' => 'https://api.drupal.org/api/drupal/modules!block!block.modules']) . '</p>';
       $output .= '<h3>' . t('Uses') . '</h3>';
       $output .= '<p>' . t('Block placement is specific to each theme on your site. This module allows you to place blocks in the context of your content pages.') . '</p>';
+      $output .= '<p>' . t(' This allows you to define a block containing content of your choice.') . '</p>';
+      $output .= '<p>' . t('It is also used for making API changes with Drupal.') . '</p>';
       return $output;
   }
 }
