Skip to content

Commit 307053a

Browse files
committed
Fix dev error message
1 parent 4f45747 commit 307053a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/resources/resource-resolver.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export class ResourceResolver {
101101
discovered.filter((f) => f.meta.types.has(type)),
102102
);
103103
if (!filtered) {
104-
throw new ServerException(`Could find resolver for type: ${type}`);
104+
throw new ServerException(`Could not find resolver for type: ${type}`);
105105
}
106106
if (filtered.length > 1) {
107107
this.logger.warning(`Found more than one resolver for ${type}`);

0 commit comments

Comments
 (0)