From c3cbf1d4cd7114741a0788686f32cceafff1db03 Mon Sep 17 00:00:00 2001 From: Frank Celler Date: Sat, 23 Mar 2013 19:03:45 +0100 Subject: [PATCH] fixed typo --- js/server/modules/org/arangodb/actions.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/server/modules/org/arangodb/actions.js b/js/server/modules/org/arangodb/actions.js index dca1adb582..e01034de5b 100644 --- a/js/server/modules/org/arangodb/actions.js +++ b/js/server/modules/org/arangodb/actions.js @@ -244,9 +244,10 @@ function lookupCallbackAction (route, action) { defn = "func = (function() { var callback = " + action.callback + "; return callback;})();"; env = { module: module.root, - require: funcion (path) { + require: function (path) { return module.root.require(path); } + }; try {