diff --git a/core/modules/system/src/Plugin/Block/SystemMenuBlock.php b/core/modules/system/src/Plugin/Block/SystemMenuBlock.php
index de9ee79..85ca500 100644
--- a/core/modules/system/src/Plugin/Block/SystemMenuBlock.php
+++ b/core/modules/system/src/Plugin/Block/SystemMenuBlock.php
@@ -92,7 +92,7 @@ public function blockForm($form, FormStateInterface $form_state) {
       '#title' => $this->t('Initial menu level'),
       '#default_value' => $config['level'],
       '#options' => $options,
-      '#description' => $this->t('The menu will only be visible if the menu item for the current page is at or below the selected starting level. Select level 1 to always keep this menu visible.'),
+      '#description' => $this->t('The starting level where this menu should become viewable. Level 1 will always show the menu.'),
       '#required' => TRUE,
     );
 
@@ -100,10 +100,10 @@ public function blockForm($form, FormStateInterface $form_state) {
 
     $form['menu_levels']['depth'] = array(
       '#type' => 'select',
-      '#title' => $this->t('Maximum number of menu levels to display'),
+      '#title' => $this->t('Maximum levels displayed'),
       '#default_value' => $config['depth'],
       '#options' => $options,
-      '#description' => $this->t('The maximum number of menu levels to show, starting from the initial menu level. For example: with an initial level 2 and a maximum number of 3, menu levels 2, 3 and 4 can be displayed.'),
+      '#description' => $this->t('The maximum number of menu levels to show underneath the initial menu level selected.'),
       '#required' => TRUE,
     );
 
