Skip to content

Commit

Permalink
Fix typo (#1485)
Browse files Browse the repository at this point in the history
  • Loading branch information
federicobozzini authored Feb 1, 2023
1 parent 01e5798 commit 1133992
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/constants/error_msgs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const PRE_DESTROY_ERROR = (clazz: string, errorMessage: string) => `@preD
export const ON_DEACTIVATION_ERROR = (clazz: string, errorMessage: string) => `onDeactivation() error in class ${clazz}: ${errorMessage}`;

export const CIRCULAR_DEPENDENCY_IN_FACTORY = (factoryType: string, serviceIdentifier: string) =>
`It looks like there is a circular dependency in one of the '${factoryType}' bindings. Please investigate bindings with` +
`It looks like there is a circular dependency in one of the '${factoryType}' bindings. Please investigate bindings with ` +
`service identifier '${serviceIdentifier}'.`;

export const STACK_OVERFLOW = 'Maximum call stack size exceeded';

0 comments on commit 1133992

Please sign in to comment.