Fix a tiypo
authorNoah Miller <nm@lemnisc.us>
Mon, 4 Dec 2023 07:06:45 +0000 (23:06 -0800)
committerNoah Miller <nm@lemnisc.us>
Mon, 4 Dec 2023 07:06:45 +0000 (23:06 -0800)
CRM/Core/BAO/CustomGroup.php
ext/afform/core/Civi/Afform/Event/AfformEntitySortEvent.php
tests/phpunit/CRM/Core/BAO/ActionScheduleTest.php
tests/phpunit/api/v3/CustomGroupTest.php

index 3ae47793a5870275ede5efd44311517a12f45300..c9ea430fc5b35e6cce30e9eee6e7fb827b5819da 100644 (file)
@@ -60,13 +60,13 @@ class CRM_Core_BAO_CustomGroup extends CRM_Core_DAO_CustomGroup implements \Civi
       if (is_array($extendsChildType)) {
         foreach ($extendsChildType as $childType) {
           if (!array_key_exists($childType, $registeredSubTypes) && !in_array($childType, $registeredSubTypes, TRUE)) {
-            throw new CRM_Core_Exception('Supplied Sub type is not valid for the specified entitiy');
+            throw new CRM_Core_Exception('Supplied Sub type is not valid for the specified entity');
           }
         }
       }
       else {
         if (!array_key_exists($extendsChildType, $registeredSubTypes) && !in_array($extendsChildType, $registeredSubTypes, TRUE)) {
-          throw new CRM_Core_Exception('Supplied Sub type is not valid for the specified entitiy');
+          throw new CRM_Core_Exception('Supplied Sub type is not valid for the specified entity');
         }
         $extendsChildType = [$extendsChildType];
       }
index 38f01a6d78ffbbd69b701b91e1af0cb82754731b..57d5fe4aed26468b2d8f631943d795992ebabc43 100644 (file)
@@ -29,7 +29,7 @@ class AfformEntitySortEvent extends AfformBaseEvent {
     $sorter = new FixedArraySort();
     $formEntities = array_keys($this->getFormDataModel()->getEntities());
     foreach ($formEntities as $entityName) {
-      // Add all dependencies that are the valid name of another entitiy
+      // Add all dependencies that are the valid name of another entity
       $dependencies = array_intersect($this->dependencies[$entityName] ?? [], $formEntities);
       $sorter->add($entityName, $dependencies);
     }
index ba2f09d76b8a553a028f647a0012a792fbd7821f..ac7f97442e7fb4271bad807e590c78ac86db890b 100644 (file)
@@ -2411,7 +2411,7 @@ class CRM_Core_BAO_ActionScheduleTest extends CiviUnitTestCase {
    * It 'steals and deletes entities that are part of the 'stock build'.
    *
    * In general this causes weird stuff and is worse that competing functions
-   * like individualCreate() eventCreateUnpaid() or createTestEntitiy().
+   * like individualCreate() eventCreateUnpaid() or createTestEntity().
    *
    * @param $daoName
    * @param array $params
index 66a38936c49c0aee8a390e6b6e9d0c08aa67bb96..57ede8415b10cdb3c28be75a1bfa72df113594b8 100644 (file)
@@ -175,7 +175,7 @@ class api_v3_CustomGroupTest extends CiviUnitTestCase {
       'is_active' => 1,
     ];
 
-    $result = $this->callAPIFailure('custom_group', 'create', $params, 'Supplied Sub type is not valid for the specified entitiy');
+    $result = $this->callAPIFailure('custom_group', 'create', $params, 'Supplied Sub type is not valid for the specified entity');
   }
 
   /**