summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/operations
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-wallet-core/src/operations')
-rw-r--r--packages/taler-wallet-core/src/operations/errors.ts2
-rw-r--r--packages/taler-wallet-core/src/operations/pay.ts2
-rw-r--r--packages/taler-wallet-core/src/operations/reserves.ts4
-rw-r--r--packages/taler-wallet-core/src/operations/transactions.ts2
4 files changed, 5 insertions, 5 deletions
diff --git a/packages/taler-wallet-core/src/operations/errors.ts b/packages/taler-wallet-core/src/operations/errors.ts
index 61e8c5754..d788405ff 100644
--- a/packages/taler-wallet-core/src/operations/errors.ts
+++ b/packages/taler-wallet-core/src/operations/errors.ts
@@ -49,7 +49,7 @@ export class OperationFailedAndReportedError extends Error {
}
/**
- * This exception is thrown when an error occured and the caller is
+ * This exception is thrown when an error occurred and the caller is
* responsible for recording the failure in the database.
*/
export class OperationFailedError extends Error {
diff --git a/packages/taler-wallet-core/src/operations/pay.ts b/packages/taler-wallet-core/src/operations/pay.ts
index 12cefdc8b..2e8228e6e 100644
--- a/packages/taler-wallet-core/src/operations/pay.ts
+++ b/packages/taler-wallet-core/src/operations/pay.ts
@@ -1218,7 +1218,7 @@ export async function checkPaymentByProposalId(
proposalId = proposal.proposalId;
- // First check if we already payed for it.
+ // First check if we already paid for it.
const purchase = await ws.db.get(Stores.purchases, proposalId);
if (!purchase) {
diff --git a/packages/taler-wallet-core/src/operations/reserves.ts b/packages/taler-wallet-core/src/operations/reserves.ts
index 9467287a7..984ce5a6b 100644
--- a/packages/taler-wallet-core/src/operations/reserves.ts
+++ b/packages/taler-wallet-core/src/operations/reserves.ts
@@ -261,7 +261,7 @@ export async function forceQueryReserve(
}
/**
- * First fetch information requred to withdraw from the reserve,
+ * First fetch information required to withdraw from the reserve,
* then deplete the reserve, withdrawing coins until it is empty.
*
* The returned promise resolves once the reserve is set to the
@@ -467,7 +467,7 @@ async function incrementReserveRetry(
/**
* Update the information about a reserve that is stored in the wallet
- * by quering the reserve's exchange.
+ * by querying the reserve's exchange.
*
* If the reserve have funds that are not allocated in a withdrawal group yet
* and are big enough to withdraw with available denominations,
diff --git a/packages/taler-wallet-core/src/operations/transactions.ts b/packages/taler-wallet-core/src/operations/transactions.ts
index 94925da16..8ee02c059 100644
--- a/packages/taler-wallet-core/src/operations/transactions.ts
+++ b/packages/taler-wallet-core/src/operations/transactions.ts
@@ -72,7 +72,7 @@ function shouldSkipSearch(
}
/**
- * Retrive the full event history for this wallet.
+ * Retrieve the full event history for this wallet.
*/
export async function getTransactions(
ws: InternalWalletState,