From 9a04e957092703ccb59b60937e3ffe10fe8cf79a Mon Sep 17 00:00:00 2001 From: Markis Taylor Date: Sun, 10 Apr 2016 15:55:19 -0700 Subject: [PATCH] Error message typo (#167) --- src/constants/error_msgs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants/error_msgs.ts b/src/constants/error_msgs.ts index 1a47f9c1..ee7b5777 100644 --- a/src/constants/error_msgs.ts +++ b/src/constants/error_msgs.ts @@ -6,7 +6,7 @@ export const NULL_ARGUMENT = "NULL argument"; export const KEY_NOT_FOUND = "Key Not Found"; export const AMBIGUOUS_MATCH = "Ambiguous match found for serviceIdentifier:"; export const CANNOT_UNBIND = "Could not unbind serviceIdentifier:"; -export const NOT_REGISTERED = "No bindigns found for serviceIdentifier:"; +export const NOT_REGISTERED = "No bindings found for serviceIdentifier:"; export const MISSING_INJECTABLE_ANNOTATION = "Missing required @injectable annotation in:"; export const MISSING_INJECT_ANNOTATION = "Missing required @inject or @multiInject annotation in:"; export const CIRCULAR_DEPENDENCY = "Circular dependency found between services:";