From dd44e8b6ec141e630af4543bd3babcce39aa2887 Mon Sep 17 00:00:00 2001 From: Jiralite <33201955+Jiralite@users.noreply.github.com> Date: Sun, 21 Aug 2022 21:39:40 +0100 Subject: [PATCH] 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> --- packages/proxy/src/handlers/proxyRequests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/proxy/src/handlers/proxyRequests.ts b/packages/proxy/src/handlers/proxyRequests.ts index e5f5afd53..823c9c14c 100644 --- a/packages/proxy/src/handlers/proxyRequests.ts +++ b/packages/proxy/src/handlers/proxyRequests.ts @@ -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', ); }