diff --git a/README.md b/README.md index adc46efb..d75c3eed 100644 --- a/README.md +++ b/README.md @@ -116,7 +116,7 @@ The following < 0.2 code produced a JWT as expected: Jwt jwt = Jwts.parser().setSigningKey(key).parse(compact); ``` -But you couldn't easily determine if the `jwt` was a `JWT` or `JWS` instance or if the body was a `Claims` instance or a plaintext `String` without resorting to yucky `instanceof` checks. In 0.2, we introduce the `JwtHandler` when you don't know the exact format of the compact JWT string ahead of time, and parsing convenience methods when you do. +But you couldn't easily determine if the `jwt` was a `JWT` or `JWS` instance or if the body was a `Claims` instance or a plaintext `String` without resorting to a bunch of yucky `instanceof` checks. In 0.2, we introduce the `JwtHandler` when you don't know the exact format of the compact JWT string ahead of time, and parsing convenience methods when you do. ##### JwtHandler