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

fix: typos in documentation files #5397

Open
wants to merge 9 commits into
base: main
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
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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': {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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',
);
},
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 () => {
Expand Down
2 changes: 1 addition & 1 deletion scripts/migrate-tags.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading