From 030c09e75c40710a75c14e4620ee770d28a1b401 Mon Sep 17 00:00:00 2001 From: Kasper Karlsson Date: Mon, 5 Feb 2024 15:44:06 +0100 Subject: [PATCH] Fix typo in example code --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4663cbdf..285f56ec 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ DecodedJWT decodedJWT; try { Algorithm algorithm = Algorithm.RSA256(rsaPublicKey, rsaPrivateKey); JWTVerifier verifier = JWT.require(algorithm) - // specify an specific claim validations + // specify any specific claim validations .withIssuer("auth0") // reusable verifier instance .build();