Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix some typos in comment #1129

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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