Skip to content

Commit

Permalink
undo quotation change
Browse files Browse the repository at this point in the history
  • Loading branch information
minhanh-phan committed Dec 10, 2024
1 parent 52b0439 commit f6a79bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export class APIPromise<T> extends Promise<WithRequestID<T>> {
* instance, you can use {@link withResponse()}.
*
* 👋 Getting the wrong TypeScript type for `Response`?
* Try setting `'moduleResolution': 'NodeNext'` if you can,
* Try setting `"moduleResolution": "NodeNext"` if you can,
* or add one of these imports before your first `import … from 'openai'`:
* - `import 'openai/shims/node'` (if you're running on Node)
* - `import 'openai/shims/web'` (otherwise)
Expand All @@ -149,7 +149,7 @@ export class APIPromise<T> extends Promise<WithRequestID<T>> {
*
*
* 👋 Getting the wrong TypeScript type for `Response`?
* Try setting `'moduleResolution': 'NodeNext'` if you can,
* Try setting `"moduleResolution": "NodeNext"` if you can,
* or add one of these imports before your first `import … from 'openai'`:
* - `import 'openai/shims/node'` (if you're running on Node)
* - `import 'openai/shims/web'` (otherwise)
Expand Down Expand Up @@ -1117,7 +1117,7 @@ export function hasOwn(obj: Object, key: string): boolean {
}

/**
* Copies headers from 'newHeaders' onto 'targetHeaders',
* Copies headers from "newHeaders" onto "targetHeaders",
* using lower-case for all properties,
* ignoring any keys with undefined values,
* and deleting any keys with null values.
Expand Down

0 comments on commit f6a79bb

Please sign in to comment.