From 95e8778d27dbd99d6f818c043847b78360234d03 Mon Sep 17 00:00:00 2001 From: Lloyd Hilaiel <lloyd@hilaiel.com> Date: Wed, 17 Aug 2011 19:11:49 +0300 Subject: [PATCH] fix a typo in dev configuration: s/dev/devlopment/ --- libs/configuration.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/configuration.js b/libs/configuration.js index 33fa1b66f..5e98b4611 100644 --- a/libs/configuration.js +++ b/libs/configuration.js @@ -80,8 +80,8 @@ g_configs.beta.hostname = 'diresworb.org'; // development (dev.diresworb.org) the only difference from production // is, again, the hostname -g_configs.dev = JSON.parse(JSON.stringify(g_configs.production)); -g_configs.dev.hostname = 'dev.diresworb.org'; +g_configs.development = JSON.parse(JSON.stringify(g_configs.production)); +g_configs.development.hostname = 'dev.diresworb.org'; // local development configuration g_configs.local = { -- GitLab