Skip to content

Commit f6a79bb

Browse files
committed
undo quotation change
1 parent 52b0439 commit f6a79bb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/core.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ export class APIPromise<T> extends Promise<WithRequestID<T>> {
130130
* instance, you can use {@link withResponse()}.
131131
*
132132
* 👋 Getting the wrong TypeScript type for `Response`?
133-
* Try setting `'moduleResolution': 'NodeNext'` if you can,
133+
* Try setting `"moduleResolution": "NodeNext"` if you can,
134134
* or add one of these imports before your first `import … from 'openai'`:
135135
* - `import 'openai/shims/node'` (if you're running on Node)
136136
* - `import 'openai/shims/web'` (otherwise)
@@ -149,7 +149,7 @@ export class APIPromise<T> extends Promise<WithRequestID<T>> {
149149
*
150150
*
151151
* 👋 Getting the wrong TypeScript type for `Response`?
152-
* Try setting `'moduleResolution': 'NodeNext'` if you can,
152+
* Try setting `"moduleResolution": "NodeNext"` if you can,
153153
* or add one of these imports before your first `import … from 'openai'`:
154154
* - `import 'openai/shims/node'` (if you're running on Node)
155155
* - `import 'openai/shims/web'` (otherwise)
@@ -1117,7 +1117,7 @@ export function hasOwn(obj: Object, key: string): boolean {
11171117
}
11181118

11191119
/**
1120-
* Copies headers from 'newHeaders' onto 'targetHeaders',
1120+
* Copies headers from "newHeaders" onto "targetHeaders",
11211121
* using lower-case for all properties,
11221122
* ignoring any keys with undefined values,
11231123
* and deleting any keys with null values.

0 commit comments

Comments
 (0)