Skip to content

Commit

Permalink
fix typos (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
vuittont60 authored Jan 16, 2024
1 parent 3e97f20 commit c22691e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion e2e/tests/initial-display.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ test.describe('Starknet dapp should be able to initilize account and have correc
await applicationPage.waitForLodingPage();
await applicationPage.checkUserIsconnected();

// Check user is directed to infomation page when click about this snap link
// Check user is directed to information page when click about this snap link
await applicationPage.clickAboutThisSnapLink()
const [infoPage] = await Promise.all([browserContext.waitForEvent('page')]);
expect(infoPage.url()).toContain('/metamask-integrates-starkware-into');
Expand Down
2 changes: 1 addition & 1 deletion packages/starknet-snap/src/utils/keyPair.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function grindKey(keySeed: string, keyValueLimit = ec.ec.n): string {
);
const maxAllowedVal = sha256EcMaxDigest.sub(sha256EcMaxDigest.mod(keyValueLimit));

// Make sure the produced key is devided by the Stark EC order,
// Make sure the produced key is derived by the Stark EC order,
// and falls within the range [0, maxAllowedVal).
let i = 0;
let key;
Expand Down

0 comments on commit c22691e

Please sign in to comment.