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`.