diff --git a/Aztec-Passport/apps/www/src/lib/helpers.ts b/Aztec-Passport/apps/www/src/lib/helpers.ts index 4c090f4d2..c18aa0252 100644 --- a/Aztec-Passport/apps/www/src/lib/helpers.ts +++ b/Aztec-Passport/apps/www/src/lib/helpers.ts @@ -166,7 +166,7 @@ export const getEmail = async (accessToken: string, service: Service) => { }; export const extractXUsername = (email: string): string => { - // email contains the follwing + // email contains the following // If you requested a password reset for @dummy_testing_, use the confirmation code below to complete the process. If you didn't make this request, ignore this email. // extract username which is after If you requested a password reset for and till , diff --git a/zekshop/README.md b/zekshop/README.md index ec88f4976..d85ac0e8c 100644 --- a/zekshop/README.md +++ b/zekshop/README.md @@ -47,7 +47,7 @@ ZeKshop provides users the ability to create Schnorr account with which they can ### app -The client-side of ZeKshop. Contains utils for proving and veryfing an email and an interactive UI of ZeKshop. Steps for running it locally can be found below. +The client-side of ZeKshop. Contains utils for proving and verifying an email and an interactive UI of ZeKshop. Steps for running it locally can be found below. ## Technical guidance diff --git a/zekshop/circuits/client/tests/proving.test.ts b/zekshop/circuits/client/tests/proving.test.ts index ff83553ed..c32e7e08d 100644 --- a/zekshop/circuits/client/tests/proving.test.ts +++ b/zekshop/circuits/client/tests/proving.test.ts @@ -52,7 +52,7 @@ describe("E2E Tests", () => { afterAll(async () => { prover.destroy(); }); - it("Standart email from ZeKshop", async () => { + it("Standard email from ZeKshop", async () => { const inputs = await generateEmailVerifierInputs( email.data, correctInputParams @@ -62,4 +62,4 @@ describe("E2E Tests", () => { expect(result).toBeTruthy(); }); }); -}); \ No newline at end of file +});