diff --git a/core/modules/field_ui/src/Form/FieldStorageAddForm.php b/core/modules/field_ui/src/Form/FieldStorageAddForm.php
index 231fd63a17..66824a0070 100644
--- a/core/modules/field_ui/src/Form/FieldStorageAddForm.php
+++ b/core/modules/field_ui/src/Form/FieldStorageAddForm.php
@@ -407,13 +407,13 @@ public function submitForm(array &$form, FormStateInterface $form_state) {
     elseif (!$error) {
       drupal_set_message($this->t('Your settings have been saved.'));
     }
   }
 
   /**
-   * Configures the newly created field for the default view and form modes.
+   * Configures the field for the default form mode.
    *
    * @param string $field_name
    *   The field name.
    * @param string|null $widget_id
    *   (optional) The plugin ID of the widget. Defaults to NULL.
    */
@@ -425,13 +425,13 @@ protected function configureEntityFormDisplay($field_name, $widget_id = NULL) {
     entity_get_form_display($this->entityTypeId, $this->bundle, 'default')
       ->setComponent($field_name, $options)
       ->save();
   }
 
   /**
-   * Configures the newly created field for the default view and form modes.
+   * Configures the field for the default view mode.
    *
    * @param string $field_name
    *   The field name.
    * @param string|null $formatter_id
    *   (optional) The plugin ID of the formatter. Defaults to NULL.
    */
