chore: fix typo in credential error message (#1496)

This commit is contained in:
Dany Gagnon 2022-02-03 02:28:57 -05:00 committed by GitHub
parent 4ce2ce5f1b
commit 2e1f3a56d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ export default class Request extends Body {
}
if (parsedURL.username !== '' || parsedURL.password !== '') {
throw new TypeError(`${parsedURL} is an url with embedded credentails.`);
throw new TypeError(`${parsedURL} is an url with embedded credentials.`);
}
let method = init.method || input.method || 'GET';