Skip to content

Commit a075332

Browse files
committed
Update subheading to h2 from h3
1 parent 5767837 commit a075332

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

docs/sources/k6/next/javascript-api/k6-browser/page/route.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ When several routes match the given pattern, they run in the order opposite to t
1414
| url | string or Regexp | `''` | URL to match during routing. |
1515
| handler | function([Route](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/route/)) | null | Handler function executed when routing the request. |
1616

17-
### Returns
17+
## Returns
1818

1919
| Type | Description |
2020
| --------------- | ------------------------------------------------------------ |
2121
| `Promise<void>` | A Promise that fulfills when the route is added to the page. |
2222

23-
### Example
23+
## Example
2424

2525
{{< code >}}
2626

docs/sources/k6/next/javascript-api/k6-browser/route/abort.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ Aborts the request with the given error code.
1111
| --------- | ------ | ---------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
1212
| errorCode | string | `'failed'` | Error code when aborting the request. Can be one of the following: `'aborted'`, `'accessdenied'`, `'addressunreachable'`, `'blockedbyclient'`, `'blockedbyresponse'`, `'connectionaborted'`,`'connectionclosed'`, `'connectionfailed'`, `'connectionrefused'`, `'connectionreset'`, `'internetdisconnected'`, `'namenotresolved'`, `'timedout'`, `'failed'`. |
1313

14-
### Returns
14+
## Returns
1515

1616
| Type | Description |
1717
| --------------- | ---------------------------------------------------- |
1818
| `Promise<void>` | A Promise that fulfills when the request is aborted. |
1919

20-
### Example
20+
## Example
2121

2222
{{< code >}}
2323

docs/sources/k6/next/javascript-api/k6-browser/route/continue.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ Sends the request to the network with optional overrides.
2121
| options.postData | string or Buffer | `''` | Post data of the request. |
2222
| options.url | string | `''` | Request URL. |
2323

24-
### Returns
24+
## Returns
2525

2626
| Type | Description |
2727
| --------------- | ---------------------------------------------------- |
2828
| `Promise<void>` | A Promise that fulfills when the request is resumed. |
2929

30-
### Example
30+
## Example
3131

3232
{{< code >}}
3333

docs/sources/k6/next/javascript-api/k6-browser/route/fulfill.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ Fulfills the request with the given response.
2121
| options.headers | object | null | Response headers. |
2222
| options.status | number | `200` | Response status code. |
2323

24-
### Returns
24+
## Returns
2525

2626
| Type | Description |
2727
| --------------- | ------------------------------------------------------ |
2828
| `Promise<void>` | A Promise that fulfills when the request is fulfilled. |
2929

30-
### Example
30+
## Example
3131

3232
{{< code >}}
3333

docs/sources/k6/next/javascript-api/k6-browser/route/request.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ description: 'Browser module: Route.request method'
77

88
Returns the matching [Request](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/request) object.
99

10-
### Returns
10+
## Returns
1111

1212
| Type | Description |
1313
| --------- | --------------------- |
1414
| `Request` | The `Request` object. |
1515

16-
### Example
16+
## Example
1717

1818
{{< code >}}
1919

0 commit comments

Comments
 (0)