From a4f2fbfa478b5304f9099caede9ff142d16a1d07 Mon Sep 17 00:00:00 2001 From: Froelund Date: Thu, 28 Aug 2014 15:41:09 -0700 Subject: [PATCH] Fixed typo when throwing error --- src/firebase.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/firebase.js b/src/firebase.js index 46151903..f76c2bbf 100644 --- a/src/firebase.js +++ b/src/firebase.js @@ -170,7 +170,7 @@ throw new Error('config.arrayFactory must be a valid function'); } if (!angular.isFunction(cnf.objectFactory)) { - throw new Error('config.arrayFactory must be a valid function'); + throw new Error('config.objectFactory must be a valid function'); } } };