diff --git a/docs/sources/next/javascript-api/k6-experimental/browser/request/headervalue.md b/docs/sources/next/javascript-api/k6-experimental/browser/request/headervalue.md index 88d5e8efe1..7307127e6c 100644 --- a/docs/sources/next/javascript-api/k6-experimental/browser/request/headervalue.md +++ b/docs/sources/next/javascript-api/k6-experimental/browser/request/headervalue.md @@ -9,9 +9,9 @@ Returns the value of the header matching the name. The name is case insensitive. ### Returns -| Type | Description | -| ------------------------- | ------------------------------------------------------------------------------------- | -| `Promise` | A promise that resolves to the value of the header matching the name, otherwise null. | +| Type | Description | +| ------------------------- | --------------------------------------------------------------------------------------- | +| `Promise` | A promise that resolves to the value of the header matching the name, otherwise `null`. | ### Example diff --git a/docs/sources/next/javascript-api/k6-experimental/browser/request/postdata.md b/docs/sources/next/javascript-api/k6-experimental/browser/request/postdata.md index a4fee55bb3..16287ecab2 100644 --- a/docs/sources/next/javascript-api/k6-experimental/browser/request/postdata.md +++ b/docs/sources/next/javascript-api/k6-experimental/browser/request/postdata.md @@ -9,9 +9,9 @@ Contains the request's post body, if any. ### Returns -| Type | Description | -| -------------- | --------------------------------------------------- | -| string \| null | Request's post body, otherwise null if none exists. | +| Type | Description | +| -------------- | ----------------------------------------------------- | +| string \| null | Request's post body, otherwise `null` if none exists. | ### Example diff --git a/docs/sources/next/javascript-api/k6-experimental/browser/request/postdatabuffer.md b/docs/sources/next/javascript-api/k6-experimental/browser/request/postdatabuffer.md index efffdc13e0..4b54ce0868 100644 --- a/docs/sources/next/javascript-api/k6-experimental/browser/request/postdatabuffer.md +++ b/docs/sources/next/javascript-api/k6-experimental/browser/request/postdatabuffer.md @@ -9,9 +9,9 @@ Request's post body in a binary form, if any. ### Returns -| Type | Description | -| ------------------- | ------------------------------------------------------------------------ | -| ArrayBuffer \| null | Returns an ArrayBuffer with request's post data or null if no post data. | +| Type | Description | +| ------------------- | ---------------------------------------------------------------------------- | +| ArrayBuffer \| null | Returns an `ArrayBuffer` with request's post data or `null` if no post data. | ### Example