Skip to content

Commit a664001

Browse files
committed
chore: fix typos in docs
1 parent 438027a commit a664001

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

apps/portal/src/app/references/components/TDoc/utils/getAllTSReferencesLinkMap.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { fetchTypeScriptDoc } from "../fetchDocs/fetchTypeScriptDoc";
44
const validReferenceLinks: Set<string> = new Set();
55

66
/**
7-
* Get the map of all valid reference links for typescript pacakges
7+
* Get the map of all valid reference links for typescript packages
88
*/
99
export async function getAllTSReferencesLinks() {
1010
if (validReferenceLinks.size > 0) {

packages/thirdweb/src/wallets/smart/lib/signing.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ export async function confirmContractDeployment(args: {
181181
}
182182

183183
/**
184-
* Deployes a smart account via a dummy transaction. If the account is already deployed, this will do nothing.
184+
* Deploys a smart account via a dummy transaction. If the account is already deployed, this will do nothing.
185185
*
186186
* @param args - Arguments for the deployment.
187187
* @param args.smartAccount - The smart account to deploy.

packages/thirdweb/src/wallets/smart/lib/userop.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ async function getGasFees(args: {
250250
maxFeePerGas = bundlerGasPrice.maxFeePerGas;
251251
maxPriorityFeePerGas = bundlerGasPrice.maxPriorityFeePerGas;
252252
} else {
253-
// Check for explicity values
253+
// Check for explicitly values
254254
const [resolvedMaxFeePerGas, resolvedMaxPriorityFeePerGas] =
255255
await Promise.all([
256256
resolvePromisedValue(maxFeePerGas),

0 commit comments

Comments
 (0)