From 1451cdfa649d23deff829bc88e3b8c9aedbecc09 Mon Sep 17 00:00:00 2001 From: TwinProduction Date: Tue, 5 Oct 2021 22:36:08 -0400 Subject: [PATCH] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ae820b0d..aa539f30 100644 --- a/README.md +++ b/README.md @@ -194,7 +194,7 @@ Here are some examples of conditions you can use: | `[STATUS] <= 299` | Status must be less than or equal to 299 | 200, 201, 299 | 301, 302, ... | | `[STATUS] > 400` | Status must be greater than 400 | 401, 402, 403, 404 | 400, 200, ... | | `[STATUS] == any(200, 429)` | Status must be either 200 or 429 | 200, 429 | 201, 400, ... | -| `[CONNECTED] == true` | Connection to host must've been successful | true, false | | +| `[CONNECTED] == true` | Connection to host must've been successful | true | false | | `[RESPONSE_TIME] < 500` | Response time must be below 500ms | 100ms, 200ms, 300ms | 500ms, 501ms | | `[IP] == 127.0.0.1` | Target IP must be 127.0.0.1 | 127.0.0.1 | 0.0.0.0 | | `[BODY] == 1` | The body must be equal to 1 | 1 | `{}`, `2`, ... |