fix(proxyRequests): Typo in error message (#8537)

fix(proxyRequests): typo in error message

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
This commit is contained in:
Jiralite
2022-08-21 21:39:40 +01:00
committed by GitHub
parent 3bef9018c0
commit dd44e8b6ec

View File

@@ -19,7 +19,7 @@ export function proxyRequests(rest: REST): RequestHandler {
if (!method || !url) {
throw new TypeError(
'Invalid request. Missing method and/or url, implying that this is not a Server IncomingMesage',
'Invalid request. Missing method and/or url, implying that this is not a Server IncomingMessage',
);
}