From 90254b99429c971708b8e9f36f51f90d7c47b9a4 Mon Sep 17 00:00:00 2001 From: Wilson-Emmanuel Date: Sun, 20 Nov 2022 11:47:20 +0900 Subject: [PATCH] Fixed a typographical error --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8e634ee6..903e37ba 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ try { // reusable verifier instance .build(); - decodedJWT jwt = verifier.verify(token); + decodedJWT = verifier.verify(token); } catch (JWTVerificationException exception){ // Invalid signature/claims }