From 60dc355c640f941da9aefde60a075cf33249e24a Mon Sep 17 00:00:00 2001 From: Stefan Arentz Date: Mon, 9 Oct 2023 13:43:48 -0400 Subject: [PATCH] Add ID to Claims interface --- claims.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/claims.go b/claims.go index a569c59..649c2f0 100644 --- a/claims.go +++ b/claims.go @@ -5,7 +5,7 @@ package jwt // common basis for validation, it is required that an implementation is able to // supply at least the claim names provided in // https://datatracker.ietf.org/doc/html/rfc7519#section-4.1 namely `exp`, -// `iat`, `nbf`, `iss`, `sub`, `aud` and `jti“. +// `iat`, `nbf`, `iss`, `sub`, `aud` and `jti`. type Claims interface { GetExpirationTime() (*NumericDate, error) GetIssuedAt() (*NumericDate, error)