diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-04-27 23:42:25 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-04-27 23:42:25 +0200 |
commit | 9b89387535cce603f80c9280063ffc7641279143 (patch) | |
tree | 1cb9026ead439ea5e5399d3ff38dbdd405ceae3d /packages/taler-wallet-cli | |
parent | 7b87f01968bc712ddd4d33d6a9b37a77c6f6a0ad (diff) |
fix spelling issues
Diffstat (limited to 'packages/taler-wallet-cli')
5 files changed, 9 insertions, 9 deletions
diff --git a/packages/taler-wallet-cli/src/clk.ts b/packages/taler-wallet-cli/src/clk.ts index a905464bd..ca6dcc1a4 100644 --- a/packages/taler-wallet-cli/src/clk.ts +++ b/packages/taler-wallet-cli/src/clk.ts @@ -478,12 +478,12 @@ export class CommandGroup<GN extends keyof any, TG> { try { r = this.myAction(parsedArgs); } catch (e) { - console.error(`An error occured while running ${currentName}`); + console.error(`An error occurred while running ${currentName}`); console.error(e); process.exit(1); } Promise.resolve(r).catch((e) => { - console.error(`An error occured while running ${currentName}`); + console.error(`An error occurred while running ${currentName}`); console.error(e); process.exit(1); }); diff --git a/packages/taler-wallet-cli/src/integrationtests/faultInjection.ts b/packages/taler-wallet-cli/src/integrationtests/faultInjection.ts index 60549154b..474482ec0 100644 --- a/packages/taler-wallet-cli/src/integrationtests/faultInjection.ts +++ b/packages/taler-wallet-cli/src/integrationtests/faultInjection.ts @@ -155,7 +155,7 @@ export class FaultProxy { return; } if (faultRespContext.responseBody) { - // We must accomodate for potentially changed content length + // We must accommodate for potentially changed content length faultRespContext.responseHeaders[ "content-length" ] = `${faultRespContext.responseBody.byteLength}`; diff --git a/packages/taler-wallet-cli/src/integrationtests/harness.ts b/packages/taler-wallet-cli/src/integrationtests/harness.ts index 9c7aa2852..b6ea02696 100644 --- a/packages/taler-wallet-cli/src/integrationtests/harness.ts +++ b/packages/taler-wallet-cli/src/integrationtests/harness.ts @@ -130,7 +130,7 @@ export async function sh( command: string, env: { [index: string]: string | undefined } = process.env, ): Promise<string> { - console.log("runing command", command); + console.log("running command", command); return new Promise((resolve, reject) => { const stdoutChunks: Buffer[] = []; const proc = spawn(command, { @@ -188,7 +188,7 @@ export async function runCommand( args: string[], env: { [index: string]: string | undefined } = process.env, ): Promise<string> { - console.log("runing command", shellescape([command, ...args])); + console.log("running command", shellescape([command, ...args])); return new Promise((resolve, reject) => { const stdoutChunks: Buffer[] = []; const proc = spawn(command, args, { @@ -882,7 +882,7 @@ export class ExchangeService implements ExchangeServiceInterface { "${TALER_DATA_HOME}/exchange/live-keys/", ); config.setString( - "exchage", + "exchange", "revocation_dir", "${TALER_DATA_HOME}/exchange/revocations", ); @@ -1589,7 +1589,7 @@ export async function runTestWithState( const handleSignal = (s: string) => { console.warn( - `**** received fatal proces event, terminating test ${testName}`, + `**** received fatal process event, terminating test ${testName}`, ); gc.shutdownSync(); process.exit(1); diff --git a/packages/taler-wallet-cli/src/integrationtests/merchantApiTypes.ts b/packages/taler-wallet-cli/src/integrationtests/merchantApiTypes.ts index 9d4529354..a93a0ed25 100644 --- a/packages/taler-wallet-cli/src/integrationtests/merchantApiTypes.ts +++ b/packages/taler-wallet-cli/src/integrationtests/merchantApiTypes.ts @@ -211,7 +211,7 @@ export interface TransactionWireTransfer { // execution time of the wire transfer execution_time: Timestamp; - // Total amount that has been wire transfered + // Total amount that has been wire transferred // to the merchant amount: AmountString; diff --git a/packages/taler-wallet-cli/src/integrationtests/sync.ts b/packages/taler-wallet-cli/src/integrationtests/sync.ts index e0f9e22c3..695f9a47e 100644 --- a/packages/taler-wallet-cli/src/integrationtests/sync.ts +++ b/packages/taler-wallet-cli/src/integrationtests/sync.ts @@ -43,7 +43,7 @@ export interface SyncConfig { httpPort: number; /** - * Database connection string (ony postgres is supported). + * Database connection string (only postgres is supported). */ database: string; |