From 66f7526f158e155a5e27e41348316b2ee59b8cb2 Mon Sep 17 00:00:00 2001 From: Sigura Brice Date: Wed, 25 Feb 2026 23:39:22 +0100 Subject: [PATCH] Fix JWT claims names on jwt.md --- docs/middleware/builtin/jwt.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/middleware/builtin/jwt.md b/docs/middleware/builtin/jwt.md index 6caded59..910a5be4 100644 --- a/docs/middleware/builtin/jwt.md +++ b/docs/middleware/builtin/jwt.md @@ -119,8 +119,8 @@ The `nbf` (not before) claim will be verified if present and this is set to `tru #### verifyOptions.iat: `boolean` -The `iat` (not before) claim will be verified if present and this is set to `true`. The default is `true`. +The `iat` (issued at) claim will be verified if present and this is set to `true`. The default is `true`. #### verifyOptions.exp: `boolean` -The `exp` (not before) claim will be verified if present and this is set to `true`. The default is `true`. +The `exp` (expiration time) claim will be verified if present and this is set to `true`. The default is `true`.