Skip to content

Commit

Permalink
Merge pull request #250 from ttacon/patch-1
Browse files Browse the repository at this point in the history
chore(docs): fix typo in lib/pkce/pkce.js wird -> weird
  • Loading branch information
jankapunkt authored Oct 20, 2023
2 parents c533607 + d026007 commit ed2c918
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/pkce/pkce.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const pkce = {
* @return {String|undefined}
*/
getHashForCodeChallenge: function({ method, verifier }) {
// to prevent undesired side-effects when passing some wird values
// to prevent undesired side-effects when passing some weird values
// to createHash or base64URLEncode we first check if the values are right
if (pkce.isValidMethod(method) && typeof verifier === 'string' && verifier.length > 0) {
if (method === 'plain') {
Expand Down

0 comments on commit ed2c918

Please sign in to comment.