Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mattleff committed Jun 17, 2020
1 parent 29e482a commit bd35661
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/schema-builder/errors/undefined-resolver-type.error.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export class UndefinedResolverTypeError extends Error {
constructor(name: string) {
super(
`Undefined ressolver type error. Make sure you are providing an explicit object type for the "${name}" (e.g., "@Resolver(() => Cat)").`,
`Undefined resolver type error. Make sure you are providing an explicit object type for the "${name}" (e.g., "@Resolver(() => Cat)").`,
);
}
}

0 comments on commit bd35661

Please sign in to comment.