Skip to content

Commit ae9b0ec

Browse files
committed
fix lint issues
1 parent ffabb0d commit ae9b0ec

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/data/markdown/translated-guides/en/02 Using k6/07 Modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ In k6, you can import three different kinds of modules:
1818
k6 provides many built-in modules for core functionalities.
1919
For example, the `http` client make requests against the
2020
system under test.
21-
For the full list of built-in modules, refer to the [the API documentation](/javascript-api).
21+
For the full list of built-in modules, refer to the [API documentation](/javascript-api).
2222

2323
```javascript
2424
import http from 'k6/http';

src/data/markdown/translated-guides/en/02 Using k6/08 Tags and Groups.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ export default function () {
188188
tagWithCurrentStageIndex();
189189

190190
// all the requests will have a `stage` tag
191-
// with its value equal to the the index of the stage
191+
// with its value equal to the index of the stage
192192
http.get('https://test.k6.io'); // e.g. {stage: "1"}
193193
}
194194
```

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
@@ -62,7 +62,7 @@ export default function () {
6262
<Blockquote mod="note" title="">
6363

6464
With [`gracefulRampDown`](/using-k6/scenarios/concepts/graceful-stop/#the-gracefulrampdown) set to 0 seconds, some iterations might be
65-
interrupted during the rampdown stage.
65+
interrupted during the ramp down stage.
6666

6767
</Blockquote>
6868

src/data/markdown/translated-guides/en/03 Using k6 browser/100 Examples/01 Page object model pattern.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Let's take an example of a website with a booking form added to the homepage. Im
1717

1818
To model a page object for the homepage, we've created a page object class called `homepage.js`. Different locators are created inside the constructor so that when the homepage class is instantiated, the page locator elements are ready to be used.
1919

20-
There are also different methods for:
20+
The `homepage.js` class also contains different methods for:
2121
- Navigating to the homepage
2222
- Submitting the form
2323
- Getting the verification message

0 commit comments

Comments
 (0)