Skip to content

Commit

Permalink
docs: avoid non-inclusive terminology (#488)
Browse files Browse the repository at this point in the history
Co-authored-by: Filip Skokan <panva.ip@gmail.com>
  • Loading branch information
jahands and panva committed Dec 20, 2022
1 parent 5426bb7 commit fd8d11a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/functions/jwk_embedded.EmbeddedJWK.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
EmbeddedJWK is an implementation of a GetKeyFunction intended to be used with the JWS/JWT verify
operations whenever you need to opt-in to verify signatures with a public key embedded in the
token's "jwk" (JSON Web Key) Header Parameter. It is recommended to combine this with the verify
algorithms option to whitelist JWS algorithms to accept.
function's `algorithms` option to define accepted JWS "alg" (Algorithm) Header Parameter values.

**`example`** Usage

Expand Down
2 changes: 1 addition & 1 deletion src/jwk/embedded.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { JWSInvalid } from '../util/errors.js'
* EmbeddedJWK is an implementation of a GetKeyFunction intended to be used with the JWS/JWT verify
* operations whenever you need to opt-in to verify signatures with a public key embedded in the
* token's "jwk" (JSON Web Key) Header Parameter. It is recommended to combine this with the verify
* algorithms option to whitelist JWS algorithms to accept.
* function's `algorithms` option to define accepted JWS "alg" (Algorithm) Header Parameter values.
*
* @example Usage
*
Expand Down

0 comments on commit fd8d11a

Please sign in to comment.