chore: fix typo

This commit is contained in:
Isra 2023-09-28 15:51:39 -05:00
parent 3c292baf26
commit e070701905
1 changed files with 1 additions and 1 deletions

View File

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