From a4f901d27a6dfcc1ac84077ced283f4fb2e1ee2d Mon Sep 17 00:00:00 2001 From: Andreas Nauleau Date: Wed, 31 May 2017 13:33:59 -0700 Subject: [PATCH] Fixes grammatical error these is -> these are --- views/md/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/md/introduction.md b/views/md/introduction.md index 11748321..f2a3af57 100755 --- a/views/md/introduction.md +++ b/views/md/introduction.md @@ -49,7 +49,7 @@ Then, this JSON is **Base64Url** encoded to form the first part of the JWT. The second part of the token is the payload, which contains the claims. Claims are statements about an entity (typically, the user) and additional metadata. There are three types of claims: *reserved*, *public*, and *private* claims. -- **Reserved claims**: These is a set of predefined claims which are not mandatory but recommended, to provide a set of useful, interoperable claims. Some of them are: **iss** (issuer), **exp** (expiration time), **sub** (subject), **aud** (audience), and others. +- **Reserved claims**: These are a set of predefined claims which are not mandatory but recommended, to provide a set of useful, interoperable claims. Some of them are: **iss** (issuer), **exp** (expiration time), **sub** (subject), **aud** (audience), and others. > Notice that the claim names are only three characters long as JWT is meant to be compact.