diff --git a/core/modules/block_content/src/Plugin/Block/BlockContentBlock.php b/core/modules/block_content/src/Plugin/Block/BlockContentBlock.php
index 7c862f499fd418c8047d14f7f8a815c03b8c9f33..4a7328e4a35f8a6b11be44b1027fdfdb273018c9 100644
--- a/core/modules/block_content/src/Plugin/Block/BlockContentBlock.php
+++ b/core/modules/block_content/src/Plugin/Block/BlockContentBlock.php
@@ -139,9 +139,7 @@ public function defaultConfiguration() {
   }
 
   /**
-   * Overrides \Drupal\Core\Block\BlockBase::blockForm().
-   *
-   * Adds body and description fields to the block configuration form.
+   * {@inheritdoc}
    */
   public function blockForm($form, FormStateInterface $form_state) {
     $block = $this->getEntity();
@@ -158,7 +156,6 @@ public function blockForm($form, FormStateInterface $form_state) {
       '#default_value' => $this->configuration['view_mode'],
       '#access' => (count($options) > 1),
     ];
-    $form['title']['#description'] = $this->t('The title of the block as shown to the user.');
     return $form;
   }