Skip to content

Commit c050c91

Browse files
committed
Correcting minor typos on ramping arrival rate example
Signed-off-by: Paul Balogh <[email protected]>
1 parent b4cc2d2 commit c050c91

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ In the last two minutes, it ramps down to a target of 60 iterations per minute.
6060

6161
```javascript
6262
import http from 'k6/http';
63-
import exec from 'k6/execution';
6463

6564
export const options = {
6665
discardResponseBodies: true,
@@ -86,10 +85,10 @@ export const options = {
8685
// Linearly ramp-up to starting 600 iterations per `timeUnit` over the following two minutes.
8786
{ target: 600, duration: '2m' },
8887

89-
// Cntinue starting 600 iterations per `timeUnit` for the following four minutes.
88+
// Continue starting 600 iterations per `timeUnit` for the following four minutes.
9089
{ target: 600, duration: '4m' },
9190

92-
// Linearly ramp-down to starting 60 iterations per `timeUnit` over the last two minute.
91+
// Linearly ramp-down to starting 60 iterations per `timeUnit` over the last two minutes.
9392
{ target: 60, duration: '2m' },
9493
],
9594
},

0 commit comments

Comments
 (0)