From de6e97f2ec9f4d84e6e43b5339d7b99a60173ca4 Mon Sep 17 00:00:00 2001 From: Bobby DeSimone Date: Fri, 22 Nov 2019 10:07:55 -0800 Subject: [PATCH] Fix typo in claims.go s/recipents/recipients --- jwt/claims.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jwt/claims.go b/jwt/claims.go index 55de01d1..33f8546f 100644 --- a/jwt/claims.go +++ b/jwt/claims.go @@ -80,7 +80,7 @@ func (n *NumericDate) Time() time.Time { return time.Unix(int64(*n), 0) } -// Audience represents the recipents that the token is intended for. +// Audience represents the recipients that the token is intended for. type Audience []string // UnmarshalJSON reads an audience from its JSON representation.