diff --git a/core/modules/field/field.views.inc b/core/modules/field/field.views.inc
index b01e882..5a1f4f3 100644
--- a/core/modules/field/field.views.inc
+++ b/core/modules/field/field.views.inc
@@ -80,7 +80,7 @@ function field_views_field_label($field_name) {
   if (empty($label_counter)) {
     return array($field_name, $all_labels);
   }
-  // Sort the field lables by it most used label and return the most used one.
+  // Sort the field labels by it most used label and return the most used one.
   arsort($label_counter);
   $label_counter = array_keys($label_counter);
   return array($label_counter[0], $all_labels);
diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/field/FieldPluginBase.php b/core/modules/views/lib/Drupal/views/Plugin/views/field/FieldPluginBase.php
index 9b770cc..e14b009 100644
--- a/core/modules/views/lib/Drupal/views/Plugin/views/field/FieldPluginBase.php
+++ b/core/modules/views/lib/Drupal/views/Plugin/views/field/FieldPluginBase.php
@@ -1063,7 +1063,7 @@ public function buildOptionsForm(&$form, &$form_state) {
   }
 
   /**
-   * Returns all field lables of fields before this field.
+   * Returns all field labels of fields before this field.
    *
    * @return array
    *   An array of field labels keyed by their field IDs.
