From 6eda65df14e244e420df98db172a2a5f75a74f52 Mon Sep 17 00:00:00 2001
From: catch <catch@35733.no-reply.drupal.org>
Date: Wed, 15 Apr 2020 15:04:32 +0100
Subject: [PATCH] Issue #3127641 by mglaman, longwave: Typo in
 ResourceIdentifierNormalizer, "mach" instead of "match"

---
 .../jsonapi/src/Normalizer/ResourceIdentifierNormalizer.php   | 2 +-
 .../modules/jsonapi/tests/src/Functional/ResourceTestBase.php | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/core/modules/jsonapi/src/Normalizer/ResourceIdentifierNormalizer.php b/core/modules/jsonapi/src/Normalizer/ResourceIdentifierNormalizer.php
index c1327bdda1a0..40458e2d47c4 100644
--- a/core/modules/jsonapi/src/Normalizer/ResourceIdentifierNormalizer.php
+++ b/core/modules/jsonapi/src/Normalizer/ResourceIdentifierNormalizer.php
@@ -92,7 +92,7 @@ public function denormalize($data, $class, $format = NULL, array $context = [])
       // resource.
       if (!in_array($value['type'], $target_resource_type_names)) {
         throw new BadRequestHttpException(sprintf(
-          'The provided type (%s) does not mach the destination resource types (%s).',
+          'The provided type (%s) does not match the destination resource types (%s).',
           $value['type'],
           implode(', ', $target_resource_type_names)
         ));
diff --git a/core/modules/jsonapi/tests/src/Functional/ResourceTestBase.php b/core/modules/jsonapi/tests/src/Functional/ResourceTestBase.php
index 18944192d5c9..4473edb416d7 100644
--- a/core/modules/jsonapi/tests/src/Functional/ResourceTestBase.php
+++ b/core/modules/jsonapi/tests/src/Functional/ResourceTestBase.php
@@ -1493,11 +1493,11 @@ protected function doTestRelationshipMutation(array $request_options) {
         // Test POST: invalid target.
         $request_options[RequestOptions::BODY] = Json::encode(['data' => [$resource_identifier]]);
         $response = $this->request('POST', $url, $request_options);
-        $this->assertResourceErrorResponse(400, sprintf('The provided type (%s) does not mach the destination resource types (%s).', $resource_identifier['type'], $target_identifier['type']), $url, $response, FALSE);
+        $this->assertResourceErrorResponse(400, sprintf('The provided type (%s) does not match the destination resource types (%s).', $resource_identifier['type'], $target_identifier['type']), $url, $response, FALSE);
         // Test PATCH: invalid target.
         $request_options[RequestOptions::BODY] = Json::encode(['data' => [$resource_identifier]]);
         $response = $this->request('POST', $url, $request_options);
-        $this->assertResourceErrorResponse(400, sprintf('The provided type (%s) does not mach the destination resource types (%s).', $resource_identifier['type'], $target_identifier['type']), $url, $response, FALSE);
+        $this->assertResourceErrorResponse(400, sprintf('The provided type (%s) does not match the destination resource types (%s).', $resource_identifier['type'], $target_identifier['type']), $url, $response, FALSE);
       }
 
       // Test POST: duplicate targets, no arity.
-- 
GitLab