Skip to content

Commit 60bc77f

Browse files
committed
docs(readme): change undocumented params wording (#744)
1 parent abb0be7 commit 60bc77f

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
@@ -454,7 +454,7 @@ await client.post('/some/path', {
454454
});
455455
```
456456

457-
#### Undocumented params
457+
#### Undocumented request params
458458

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

478-
#### Undocumented properties
478+
#### Undocumented response properties
479479

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

0 commit comments

Comments
 (0)