docs: fix typos (#9127)

* docs: fix typos

* indicies -> indices

* rename file

---------

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
This commit is contained in:
Lioness100
2023-02-17 15:07:38 -05:00
committed by GitHub
parent 6f78e8285b
commit 1ba1f238f0
9 changed files with 13 additions and 13 deletions

View File

@@ -58,7 +58,7 @@ export function proxyRequests(rest: REST): RequestHandler {
} else if (error instanceof Error && error.name === 'AbortError') {
populateAbortErrorResponse(res);
} else {
// Unclear if there's better course of action here for unknown erorrs. Any web framework allows to pass in an error handler for something like this
// Unclear if there's better course of action here for unknown errors. Any web framework allows to pass in an error handler for something like this
// at which point the user could dictate what to do with the error - otherwise we could just 500
throw error;
}