diff --git a/packages/assets-controllers/src/MultichainBalancesController/MultichainBalancesController.ts b/packages/assets-controllers/src/MultichainBalancesController/MultichainBalancesController.ts index 97b45e4fe9b..53960d3d415 100644 --- a/packages/assets-controllers/src/MultichainBalancesController/MultichainBalancesController.ts +++ b/packages/assets-controllers/src/MultichainBalancesController/MultichainBalancesController.ts @@ -193,7 +193,7 @@ export class MultichainBalancesController extends BaseController< * anything, but it updates the state of the controller. * * @param accountId - The account ID. - * @param assets - The list of asset types for this account to upadte. + * @param assets - The list of asset types for this account to update. */ async #updateBalance( accountId: string, diff --git a/packages/assets-controllers/src/TokenRatesController.test.ts b/packages/assets-controllers/src/TokenRatesController.test.ts index aa47bfa9784..804a7387b0c 100644 --- a/packages/assets-controllers/src/TokenRatesController.test.ts +++ b/packages/assets-controllers/src/TokenRatesController.test.ts @@ -2345,7 +2345,7 @@ describe('TokenRatesController', () => { ); }); - it('correctly calls the Price API with unqiue native token addresses (e.g. MATIC)', async () => { + it('correctly calls the Price API with unique native token addresses (e.g. MATIC)', async () => { const tokenPricesService = buildMockTokenPricesService({ fetchTokenPrices: jest.fn().mockResolvedValue({ '0x0000000000000000000000000000000000001010': { diff --git a/packages/keyring-controller/src/KeyringController.test.ts b/packages/keyring-controller/src/KeyringController.test.ts index 438530bf346..f9102923cf5 100644 --- a/packages/keyring-controller/src/KeyringController.test.ts +++ b/packages/keyring-controller/src/KeyringController.test.ts @@ -541,7 +541,7 @@ describe('KeyringController', () => { '', ), ).rejects.toThrow( - 'Eth-Hd-Keyring: Deserialize method cannot be called with an opts value for numberOfAccounts and no menmonic', + 'Eth-Hd-Keyring: Deserialize method cannot be called with an opts value for numberOfAccounts and no mnemonic', ); }, ); diff --git a/packages/network-controller/tests/provider-api-tests/block-param.ts b/packages/network-controller/tests/provider-api-tests/block-param.ts index 975f0638912..0cdc8bd29bf 100644 --- a/packages/network-controller/tests/provider-api-tests/block-param.ts +++ b/packages/network-controller/tests/provider-api-tests/block-param.ts @@ -1540,7 +1540,7 @@ export function testsForRpcMethodSupportingBlockParam( for (const [nestedDesc, currentBlockNumber] of [ ['less than the current block number', '0x200'], - ['equal to the curent block number', '0x100'], + ['equal to the current block number', '0x100'], ]) { describe(`${nestedDesc}`, () => { it('makes an additional request to the RPC endpoint', async () => { diff --git a/scripts/migrate-tags.sh b/scripts/migrate-tags.sh index 772aeb74110..b5b8a557f63 100755 --- a/scripts/migrate-tags.sh +++ b/scripts/migrate-tags.sh @@ -36,7 +36,7 @@ OPTIONS: -p SED_PATTERN --sed-pattern SED_PATTERN - sed pattern for extracting verson numbers from the original repo's tag names. Adjust if the original tag names follow a different naming scheme than 'v0.0.0'. + sed pattern for extracting version numbers from the original repo's tag names. Adjust if the original tag names follow a different naming scheme than 'v0.0.0'. --no-dry-run If specified, the tags will be created and pushed to the remote repo. Otherwise, the tags and associated release commit hashes will only be printed to stdout.