Skip to content

Commit 3cd5957

Browse files
committed
docs(readme): change undocumented params wording (#363)
1 parent 7aa2cc1 commit 3cd5957

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ await client.post('/some/path', {
293293
});
294294
```
295295

296-
#### Undocumented params
296+
#### Undocumented request params
297297

298298
To make requests using undocumented parameters, you may use `// @ts-expect-error` on the undocumented
299299
parameter. This library doesn't validate at runtime that the request matches the type, so any extra values you
@@ -314,7 +314,7 @@ extra param in the body.
314314
If you want to explicitly send an extra argument, you can do so with the `query`, `body`, and `headers` request
315315
options.
316316

317-
#### Undocumented properties
317+
#### Undocumented response properties
318318

319319
To access undocumented response properties, you may access the response object with `// @ts-expect-error` on
320320
the response object, or cast the response object to the requisite type. Like the request params, we do not

0 commit comments

Comments
 (0)