diff --git a/src/data/markdown/docs/02 javascript api/07 k6-http/10-del- url- -body-- -params- -.md b/src/data/markdown/docs/02 javascript api/07 k6-http/10-del- url- -body-- -params- -.md index 964676b7e0..efa0ef395d 100644 --- a/src/data/markdown/docs/02 javascript api/07 k6-http/10-del- url- -body-- -params- -.md +++ b/src/data/markdown/docs/02 javascript api/07 k6-http/10-del- url- -body-- -params- -.md @@ -8,7 +8,7 @@ Make a DELETE request. | Parameter | Type | Description | | ---------------------------- | --------------- | ----------------------------------------------------------------------------------------- | | url | string | Request URL (e.g. `http://example.com`). | -| body (optional, discouraged) | string / object | Request body; objects will be `x-www-form-urlencoded`. This is discouraged, because sending a DELETE request with a body has [no defined semantics](https://tools.ietf.org/html/rfc7231#section-4.3.5) and may cause some servers to reject it. | +| body (optional, discouraged) | string / object / ArrayBuffer | Request body; objects will be `x-www-form-urlencoded`. This is discouraged, because sending a DELETE request with a body has [no defined semantics](https://tools.ietf.org/html/rfc7231#section-4.3.5) and may cause some servers to reject it. | | params (optional) | object | [Params](/javascript-api/k6-http/params) object containing additional request parameters. | ### Returns