spelling: associate

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2023-06-19 01:36:40 -04:00
parent efffdc021b
commit b6d8766173
24 changed files with 27 additions and 27 deletions

View File

@@ -39,7 +39,7 @@ export default class RevertAllocatedLandedCost extends BaseLandedCost {
);
// Deletes landed cost with associated transactions.
return this.uow.withTransaction(tenantId, async (trx: Knex.Transaction) => {
// Delete landed cost transaction with assocaited locate entries.
// Delete landed cost transaction with associated locate entries.
await this.deleteLandedCost(tenantId, landedCostId, trx);
// Triggers the event `onBillLandedCostCreated`.
@@ -55,7 +55,7 @@ export default class RevertAllocatedLandedCost extends BaseLandedCost {
};
/**
* Deletes the landed cost transaction with assocaited allocate entries.
* Deletes the landed cost transaction with associated allocate entries.
* @param {number} tenantId - Tenant id.
* @param {number} landedCostId - Landed cost id.
*/