We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be8697a commit 9343c66Copy full SHA for 9343c66
src/errors.rs
@@ -59,9 +59,9 @@ pub enum ErrorKind {
59
InvalidIssuer,
60
/// When a token’s `aud` claim does not match one of the expected audience values
61
InvalidAudience,
62
- /// When a token’s `sub` claim does not match one of the expected audience values
+ /// When a token’s `sub` claim does not match one of the expected subject values
63
InvalidSubject,
64
- /// When a token’s nbf claim represents a time in the future
+ /// When a token’s `nbf` claim represents a time in the future
65
ImmatureSignature,
66
/// When the algorithm in the header doesn't match the one passed to `decode` or the encoding/decoding key
67
/// used doesn't match the alg requested
0 commit comments