Skip to content

Commit ce4b5ad

Browse files
committed
Fix typos
Signed-off-by: moznion <moznion@mail.moznion.net>
1 parent 2233920 commit ce4b5ad

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
@@ -177,13 +177,13 @@ That signature means you can:
177177
- **Omit** the defaulted headers and only pass additional ones (here, `Something-Id`):
178178
179179
```typescript
180-
client.getUsersBulkJobid({header: {"something-Id": "foobar"}, path: {jobId: "123"}});
180+
client.getUsersBulkJobid({header: {"Something-Id": "foobar"}, path: {jobId: "123"}});
181181
```
182182
183183
- **Override** all headers, including the defaults:
184184
185185
```typescript
186-
client.getUsersBulkJobid({header: {"Authorization": "foo", "Application-Version": "bar", "something-Id": "foobar"}, path: {jobId: "123"}});
186+
client.getUsersBulkJobid({header: {"Authorization": "foo", "Application-Version": "bar", "Something-Id": "foobar"}, path: {jobId: "123"}});
187187
```
188188
189189
If your default headers cover **all** required headers for the endpoint (e.g. `--default-headers 'Authorization, Application-Version, Something-Id'`), you can omit the `header` parameter entirely:

0 commit comments

Comments
 (0)