Skip to content

Commit

Permalink
Merge pull request #157 from edgio-docs/fix-jwt-spelling
Browse files Browse the repository at this point in the history
fix spelling mistake
  • Loading branch information
jsernaque authored Aug 14, 2024
2 parents ff95cc7 + d6689d6 commit 0bb2cb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/v7-ef-jwt-validation/edge-functions/validate.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const fromBase64 = (str) => Buffer.from(str, 'base64').toString()
export async function handleHttpRequest(request, context) {
Object.assign(process.env, context.environmentVars)

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

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

0 comments on commit 0bb2cb4

Please sign in to comment.