Skip to content

Commit

Permalink
docs: corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbankhead committed Apr 8, 2024
1 parent 3fb49c6 commit 39c5bdf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -178,9 +178,10 @@ interface GaxiosOptions = {
* - When provided a URL, it is matched by the `.origin` property.
* - For example, requesting `https://example.com` with the following `noProxy`s would result in a no proxy use:
* - new URL('https://example.com')
* - new URL('https://example.com:443')
* - The following would be used with a proxy:
* - new URL('http://example.com:80')
* - new URL('https://example.com:443')
* - new URL('https://example.com:8443')
* - When provided a regular expression it is used to match the stringified URL
*
* @see {@link GaxiosOptions.proxy}
Expand Down
3 changes: 2 additions & 1 deletion src/common.ts
Expand Up @@ -235,9 +235,10 @@ export interface GaxiosOptions {
* - When provided a URL, it is matched by the `.origin` property.
* - For example, requesting `https://example.com` with the following `noProxy`s would result in a no proxy use:
* - new URL('https://example.com')
* - new URL('https://example.com:443')
* - The following would be used with a proxy:
* - new URL('http://example.com:80')
* - new URL('https://example.com:443')
* - new URL('https://example.com:8443')
* - When provided a regular expression it is used to match the stringified URL
*
* @see {@link GaxiosOptions.proxy}
Expand Down

0 comments on commit 39c5bdf

Please sign in to comment.