Skip to content

Commit bf8a62b

Browse files
[fix] Correct grammatical number
and other language trims
1 parent 8adbee1 commit bf8a62b

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ this executor has the following options:
3131

3232
## When to use
3333

34-
This executor is suitable when you want a specific amount of VUs to complete a fixed
35-
number of total iterations, and the amount of iterations per VU is not important. This will be
36-
the most _"efficient"_ use of VUs, therefore if **time to complete** a number of test iterations
37-
is your concern, this executor should perform best.
34+
This executor is suitable when you want a specific number of VUs to complete a fixed
35+
number of total iterations, and the amount of iterations per VU is unimportant.
36+
If the **time to complete** a number of test iterations is your concern, this executor should perform best.
3837

39-
> An example use case could be to incorporate a quick performance test as part of the build cycle during development. As developers compile their changes, the test could be executed against the local code to help insure against performance regressions. This would be considered as part of _"shifting left"_; placing more emphasis on performance early in the development cycle when the _cost_ of the fix is lowest.
38+
An example use case is for quick performance tests in the developement build cycle.
39+
As developers make changes, they might run the test against the local code to test for performance regressions. Thus the executor works well with a _shift-left_ policy, where emphasizes testing performance early in the development cycle when the cost of a fix is lowest.
4040

4141
## Example
4242

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
@@ -19,7 +19,7 @@ this executor has the following options:
1919

2020
## When to use
2121

22-
Use this executor if you need a specific amount of VUs to complete the same amount of
22+
Use this executor if you need a specific number of VUs to complete the same number of
2323
iterations. This can be useful when you have fixed sets of test data that you want to
2424
partition between VUs.
2525

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
@@ -19,7 +19,7 @@ this executor has the following options:
1919

2020
## When to use
2121

22-
Use this executor if you need a specific amount of VUs to run for a certain amount of time.
22+
Use this executor if you need a specific number of VUs to run for a certain amount of time.
2323

2424
## Example
2525

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ this executor has the following options:
3636

3737
## When to use
3838

39-
When you want to maintain a constant number of iterations without being affected by the
40-
performance of the system under test.
39+
When you want iterations to remain constant, independent of the performance of the system under test.
4140
This approach is useful for a more accurate representation of RPS, for example.
4241

4342

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ this executor has the following options:
3636

3737
## When to use
3838

39-
If you need your tests to not be affected by the system-under-test's performance, and
39+
If you need start iterations independent of system-under-test performance, and
4040
want to ramp the number of iterations up or down during specific periods of time.
4141

4242
<Blockquote mod="note" title="">

0 commit comments

Comments
 (0)