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'; } }