Skip to content

Commit

Permalink
chore: fix some typos in comment
Browse files Browse the repository at this point in the history
Signed-off-by: luchenhan <[email protected]>
  • Loading branch information
luchenhan committed Jan 4, 2025
1 parent 38115a1 commit 6927bf4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/contract/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export class Client {
static async deploy<T = Client>(
/** Constructor/Initialization Args for the contract's `__constructor` method */
args: Record<string, any> | null,
/** Options for initalizing a Client as well as for calling a method, with extras specific to deploying. */
/** Options for initializing a Client as well as for calling a method, with extras specific to deploying. */
options: MethodOptions &
Omit<ClientOptions, "contractId"> & {
/** The hash of the Wasm blob, which must already be installed on-chain. */
Expand Down
2 changes: 1 addition & 1 deletion src/webauth/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import { ServerApi } from "../horizon/server_api";
* memo must be of type `id`. If the `clientaccountID` is a muxed account,
* memos cannot be used.
* @param {string} [clientDomain] The fully qualified domain of the client
* requesting the challenge. Only necessary when the the 'client_domain'
* requesting the challenge. Only necessary when the 'client_domain'
* parameter is passed.
* @param {string} [clientSigningKey] The public key assigned to the SIGNING_KEY
* attribute specified on the stellar.toml hosted on the client domain. Only
Expand Down
2 changes: 1 addition & 1 deletion test/unit/transaction_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ describe("assembleTransaction", () => {
// since it was greater than tx.fee
expect(result.toEnvelope().v1().tx().fee()).to.equal(215);

// validate it udpated sorobantransactiondata block in the tx ext
// validate it updated sorobantransactiondata block in the tx ext
expect(result.toEnvelope().v1().tx().ext().sorobanData()).to.deep.equal(
sorobanTransactionData,
);
Expand Down

0 comments on commit 6927bf4

Please sign in to comment.