Skip to content

Commit 0dd0f3a

Browse files
committed
clarify comment in the example
1 parent 07873cb commit 0dd0f3a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/data/markdown/translated-guides/en/02 Using k6/14 Scenarios/01 Executors/01 shared-iterations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export const options = {
5858
export default function () {
5959
http.get('https://test.k6.io/contacts.php');
6060
// We're injecting a processing pause for illustrative purposes only!
61-
// Each iteration will be ~515ms, therefore ~2 iterations/second per VU maximum throughput.
61+
// Sleep time is 500ms. Total iteration time is sleep + time to finish request.
6262
sleep(0.5);
6363
}
6464
```

src/data/markdown/translated-guides/en/02 Using k6/14 Scenarios/01 Executors/02 per-vu-iterations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export const options = {
5151
export default function () {
5252
http.get('https://test.k6.io/contacts.php');
5353
// We're injecting a processing pause for illustrative purposes only!
54-
// Each iteration will be ~515ms, therefore ~2 iterations/second per VU maximum throughput.
54+
// Sleep time is 500ms. Total iteration time is sleep + time to finish request.
5555
sleep(0.5);
5656
}
5757
```

src/data/markdown/translated-guides/en/02 Using k6/14 Scenarios/01 Executors/03 constant-vus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export const options = {
4646
export default function () {
4747
http.get('https://test.k6.io/contacts.php');
4848
// We're injecting a processing pause for illustrative purposes only!
49-
// Each iteration will be ~515ms, therefore ~2 iterations/second per VU maximum throughput.
49+
// Sleep time is 500ms. Total iteration time is sleep + time to finish request.
5050
sleep(0.5);
5151
}
5252
```

src/data/markdown/translated-guides/en/02 Using k6/14 Scenarios/01 Executors/04 ramping-vus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export const options = {
5353
export default function () {
5454
http.get('https://test.k6.io/contacts.php');
5555
// We're injecting a processing pause for illustrative purposes only!
56-
// Each iteration will be ~515ms, therefore ~2 iterations/second per VU maximum throughput.
56+
// Sleep time is 500ms. Total iteration time is sleep + time to finish request.
5757
sleep(0.5);
5858
}
5959
```

src/data/markdown/translated-guides/en/02 Using k6/14 Scenarios/01 Executors/05 constant-arrival-rate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export const options = {
8787
export default function () {
8888
http.get('https://test.k6.io/contacts.php');
8989
// We're injecting a processing pause for illustrative purposes only!
90-
// Each iteration will be ~515ms, therefore ~2 iterations/second per VU maximum throughput.
90+
// Sleep time is 500ms. Total iteration time is sleep + time to finish request.
9191
}
9292
```
9393

0 commit comments

Comments
 (0)