From 13ddb6b9b30570d0b2c94f3611737a6c450be184 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Fri, 25 Sep 2020 08:52:57 +1000 Subject: [PATCH] docs: Fix simple typo, derectory -> directory There is a small typo in scripts/tasks/i18n.js. Should read `directory` rather than `derectory`. --- scripts/tasks/i18n.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tasks/i18n.js b/scripts/tasks/i18n.js index dddfd4c..b669cb9 100644 --- a/scripts/tasks/i18n.js +++ b/scripts/tasks/i18n.js @@ -62,7 +62,7 @@ module.exports = function (grunt) { t = mustache.to_html(template, data); save(TEMPLATE_FILE, filename, entities.decode(t)); - // Save the index file on the Public derectory with the default language + // Save the index file on the Public directory with the default language if(DEFAULT_LANGUAGE === filename) { save(TEMPLATE_FILE, '', entities.decode(t)); }