diff --git a/src/common/verify/isValidAccessGrant.ts b/src/common/verify/isValidAccessGrant.ts index d3bffa890..1176e7bf9 100644 --- a/src/common/verify/isValidAccessGrant.ts +++ b/src/common/verify/isValidAccessGrant.ts @@ -83,7 +83,7 @@ async function isValidAccessGrant( }), }); - // TODO: Add verifcation on the structure of the response + // TODO: Add verification on the structure of the response return response.json(); } diff --git a/src/fetch/index.test.ts b/src/fetch/index.test.ts index d81ad8e9f..27406ee74 100644 --- a/src/fetch/index.test.ts +++ b/src/fetch/index.test.ts @@ -228,7 +228,7 @@ describe("boundFetch", () => { }); }); - it("merges initalization options in the fetch fn", async () => { + it("merges initialization options in the fetch fn", async () => { const accessToken = "access-token"; const fetchFn = boundFetch(accessToken); diff --git a/src/fetch/index.ts b/src/fetch/index.ts index 264dd8625..406f7a87e 100644 --- a/src/fetch/index.ts +++ b/src/fetch/index.ts @@ -122,7 +122,7 @@ export async function exchangeTicketForAccessToken( const data = await response.json(); return data.access_token || null; } catch (_e) { - // An error being thown here means that the response body doesn't parse as JSON. + // An error being thrown here means that the response body doesn't parse as JSON. return null; } }