Skip to content

Commit 95cc74e

Browse files
authored
fix: typos in documentation files (#6321)
Signed-off-by: kilavvy <140459108+kilavvy@users.noreply.github.com>
1 parent 2cb89cb commit 95cc74e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/thirdweb/src/rpc/rpc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ export function getRpcClient(
218218
reject = reject_;
219219
});
220220
inflightRequests.set(requestKey, promise);
221-
// @ts-expect-error - they *are* definitely assgined within the promise constructor
221+
// @ts-expect-error - they *are* definitely assigned within the promise constructor
222222
pendingBatch.push({ request, resolve, reject, requestKey });
223223
if (batchSize > 1) {
224224
// if there is no timeout, set one

packages/thirdweb/src/wallets/in-app/web/ecosystem.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ import { createInAppWallet } from "../core/wallet/in-app-core.js";
3939
*
4040
* ### Connect to a restricted ecosystem wallet with your designated partner ID
4141
*
42-
* The parnter ID will be provided to you by the ecosystem with which you're integrating.
42+
* The partner ID will be provided to you by the ecosystem with which you're integrating.
4343
*
4444
* ```ts
4545
* import { ecosystemWallet } from "thirdweb/wallets";

packages/thirdweb/src/wallets/in-app/web/lib/iframe-wallet.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ export class IFrameWallet implements IWebWallet {
203203
};
204204

205205
if (tx.maxFeePerGas) {
206-
// ethers (in the iframe) rejects any type 0 trasaction with unknown keys
206+
// ethers (in the iframe) rejects any type 0 transaction with unknown keys
207207
// TODO remove this once iframe is upgraded to v5
208208
transaction.accessList = tx.accessList;
209209
transaction.maxFeePerGas = tx.maxFeePerGas;

0 commit comments

Comments
 (0)