Skip to content

Commit fcdcce7

Browse files
authored
Merge pull request #1961 from GuilhermoReadonly/patch-1
Fix typo in description of JWT Sign recipe
2 parents f4995db + cc7cc7f commit fcdcce7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/operations/JWTVerify.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class JWTVerify extends Operation {
2222

2323
this.name = "JWT Verify";
2424
this.module = "Crypto";
25-
this.description = "Verifies that a JSON Web Token is valid and has been signed with the provided secret / private key.<br><br>The key should be either the secret for HMAC algorithms or the PEM-encoded private key for RSA and ECDSA.";
25+
this.description = "Verifies that a JSON Web Token is valid and has been signed with the provided secret / private key.<br><br>The key should be either the secret for HMAC algorithms or the PEM-encoded public key for RSA and ECDSA.";
2626
this.infoURL = "https://wikipedia.org/wiki/JSON_Web_Token";
2727
this.inputType = "string";
2828
this.outputType = "JSON";

0 commit comments

Comments
 (0)