From d0260074e24d769f622cf2576aef8929bf81b99d Mon Sep 17 00:00:00 2001 From: Trey Tacon Date: Tue, 10 Oct 2023 20:30:19 -0400 Subject: [PATCH] chore(docs): fix typo in lib/pkce/pkce.js wird -> weird --- lib/pkce/pkce.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pkce/pkce.js b/lib/pkce/pkce.js index e7603d98..088b7521 100644 --- a/lib/pkce/pkce.js +++ b/lib/pkce/pkce.js @@ -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') {