From ac6f1a1a65af2ac1084412e4c3f143e7607c9f97 Mon Sep 17 00:00:00 2001 From: Aykhan Shahsuvarov Date: Sun, 7 Jun 2026 01:18:24 +0400 Subject: [PATCH] docs: fix multi-value cycling description for method, body, and proxy --- docs/configuration.md | 6 +++--- docs/examples.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/configuration.md b/docs/configuration.md index 913ccb0..cb56d28 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -131,7 +131,7 @@ sarin -U "http://example.com/users/{{ fakeit_UUID }}" -r 1000 -c 10 ## Method -HTTP method(s). If multiple values are provided, Sarin cycles through them in order, starting from a random index for each request. Supports [templating](templating.md). +HTTP method(s). If multiple values are provided, Sarin starts at a random index and cycles through them in order. Once the cycle completes, it picks a new random starting point. Supports [templating](templating.md). **YAML example:** @@ -204,7 +204,7 @@ Skip TLS certificate verification. ## Body -Request body. If multiple values are provided, Sarin cycles through them in order, starting from a random index for each request. Supports [templating](templating.md). +Request body. If multiple values are provided, Sarin starts at a random index and cycles through them in order. Once the cycle completes, it picks a new random starting point. Supports [templating](templating.md). **YAML example:** @@ -344,7 +344,7 @@ SARIN_COOKIE="key1=value1" ## Proxy -Proxy URL(s). If multiple values are provided, Sarin cycles through them in order, starting from a random index for each request. +Proxy URL(s). If multiple values are provided, Sarin starts at a random index and cycles through them in order. Once the cycle completes, it picks a new random starting point. Supported protocols: `http`, `https`, `socks5`, `socks5h` diff --git a/docs/examples.md b/docs/examples.md index 3356737..1095594 100644 --- a/docs/examples.md +++ b/docs/examples.md @@ -719,7 +719,7 @@ proxy: socks5://proxy.example.com:1080 -**Multiple proxies (load balanced):** +**Multiple proxies (randomly cycled):** ```sh sarin -U http://example.com -r 1000 -c 10 \