From 3f9de968f0aaaa8ee3ec5560dca743892efcd7af Mon Sep 17 00:00:00 2001 From: nate Date: Thu, 9 Apr 2026 22:19:41 +0400 Subject: [PATCH] update: docs clarity --- apps/web/src/views/docs.ejs | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/apps/web/src/views/docs.ejs b/apps/web/src/views/docs.ejs index 134e485..4b97f39 100644 --- a/apps/web/src/views/docs.ejs +++ b/apps/web/src/views/docs.ejs @@ -608,18 +608,14 @@ Content-Type: application/json
{
   "$and": [
     { "status": { "$lt": 400 } },
-    {
-      "$or": [
-        { "$json": { "$.env": { "$eq": "production" } } },
-        { "$json": { "$.env": { "$eq": "staging" } } }
-      ]
-    },
-    {
-      "$or": [
-        { "$responseTime": { "$lt": 2000 } },
-        { "$json": { "$.cache": { "$eq": "hit" } } }
-      ]
-    }
+    { "$or": [
+      { "$json": { "$.env": { "$eq": "production" } } },
+      { "$json": { "$.env": { "$eq": "staging" } } }
+    ] },
+    { "$or": [
+      { "$responseTime": { "$lt": 2000 } },
+      { "$json": { "$.cache": { "$eq": "hit" } } }
+    ] }
   ]
 }