From f09730b5232c89fbc61dfb5cd9ab1e8927f3a108 Mon Sep 17 00:00:00 2001
From: catch <catch@35733.no-reply.drupal.org>
Date: Thu, 6 May 2021 12:12:26 +0100
Subject: [PATCH] Issue #3212521 by Spokje, longwave: cspell dislikes identifer
 in core/modules/views/src/Plugin/views/filter/FilterPluginBase.php and will
 fail any patch touching that file

---
 .../src/Plugin/views/filter/FilterPluginBase.php     | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/core/modules/views/src/Plugin/views/filter/FilterPluginBase.php b/core/modules/views/src/Plugin/views/filter/FilterPluginBase.php
index 396092431acc..213c8ea2e67b 100644
--- a/core/modules/views/src/Plugin/views/filter/FilterPluginBase.php
+++ b/core/modules/views/src/Plugin/views/filter/FilterPluginBase.php
@@ -963,24 +963,24 @@ public function buildExposedForm(&$form, FormStateInterface $form_state) {
    *
    * @param array $form
    *   The form.
-   * @param string $wrapper_identifer
+   * @param string $wrapper_identifier
    *   The key to use for the wrapper element.
    */
-  protected function buildValueWrapper(&$form, $wrapper_identifer) {
+  protected function buildValueWrapper(&$form, $wrapper_identifier) {
     // If both the field and the operator are exposed, this will end up being
     // called twice. We don't want to wipe out what's already there, so if it
     // exists already, do nothing.
-    if (!isset($form[$wrapper_identifer])) {
-      $form[$wrapper_identifer] = [
+    if (!isset($form[$wrapper_identifier])) {
+      $form[$wrapper_identifier] = [
         '#type' => 'fieldset',
       ];
 
       $exposed_info = $this->exposedInfo();
       if (!empty($exposed_info['label'])) {
-        $form[$wrapper_identifer]['#title'] = $exposed_info['label'];
+        $form[$wrapper_identifier]['#title'] = $exposed_info['label'];
       }
       if (!empty($exposed_info['description'])) {
-        $form[$wrapper_identifer]['#description'] = $exposed_info['description'];
+        $form[$wrapper_identifier]['#description'] = $exposed_info['description'];
       }
     }
   }
-- 
GitLab