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 a3b2ffd commit ae2db35Copy full SHA for ae2db35
claims.go
@@ -81,7 +81,7 @@ func (c *StandardClaims) VerifyIssuer(cmp string, req bool) bool {
81
return verifyIss(c.Issuer, cmp, req)
82
}
83
84
-// VerifyNotBefore compares the exp claim against cmp (cmp >= nbf).
+// VerifyNotBefore compares the nbf claim against cmp (cmp >= nbf).
85
// If req is false, it will return true, if nbf is unset.
86
func (c *StandardClaims) VerifyNotBefore(cmp int64, req bool) bool {
87
return verifyNbf(c.NotBefore, cmp, req)
0 commit comments