Skip to content

Commit 0bb2cb4

Browse files
authored
Merge pull request #157 from edgio-docs/fix-jwt-spelling
fix spelling mistake
2 parents ff95cc7 + d6689d6 commit 0bb2cb4

File tree

1 file changed

+1
-1
lines changed
  • examples/v7-ef-jwt-validation/edge-functions

1 file changed

+1
-1
lines changed

examples/v7-ef-jwt-validation/edge-functions/validate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const fromBase64 = (str) => Buffer.from(str, 'base64').toString()
88
export async function handleHttpRequest(request, context) {
99
Object.assign(process.env, context.environmentVars)
1010

11-
// Extract the toke and any other objects from the request.
11+
// Extract the token and any other objects from the request.
1212
const { token, ...other } = await request.json()
1313

1414
// Split out the header and payload from the cleartext token and determine the right algorithm to use.

0 commit comments

Comments
 (0)