From e0707019057b3f2b401c34cc2540c84d5840f386 Mon Sep 17 00:00:00 2001 From: Isra Date: Thu, 28 Sep 2023 15:51:39 -0500 Subject: [PATCH] chore: fix typo --- src/utils/errors.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/errors.ts b/src/utils/errors.ts index d31f7d8..0c83611 100644 --- a/src/utils/errors.ts +++ b/src/utils/errors.ts @@ -1,6 +1,6 @@ export class NotFoundError extends Error { constructor(reason?: string) { - super(`Couldn't found a stream: ${reason ?? 'not found'}`); + super(`Couldn't find a stream: ${reason ?? 'not found'}`); this.name = 'NotFoundError'; } }