From 358af5fea1be7eb79f4bbfac32fa39005bbec652 Mon Sep 17 00:00:00 2001 From: b_b Date: Thu, 9 Jul 2020 13:32:54 +0200 Subject: [PATCH] Fix typo in comment (#4154) --- src/node/hooks/express/specialpages.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node/hooks/express/specialpages.js b/src/node/hooks/express/specialpages.js index 2ca1384bb..b11f77a00 100644 --- a/src/node/hooks/express/specialpages.js +++ b/src/node/hooks/express/specialpages.js @@ -29,7 +29,7 @@ exports.expressCreateServer = function (hook_name, args, cb) { var filePath = path.join(settings.root, "src", "static", "skins", settings.skinName, "robots.txt"); res.sendFile(filePath, function(err) { - //there is no custom favicon, send the default robots.txt which dissallows all + //there is no custom robots.txt, send the default robots.txt which dissallows all if(err) { filePath = path.join(settings.root, "src", "static", "robots.txt");