From 703a5e4d3a27b68337146d15c9e1bcc1835baf99 Mon Sep 17 00:00:00 2001 From: Khaled Garbaya Date: Wed, 18 Oct 2017 14:08:18 +0200 Subject: [PATCH] chore: change Comments --- routes/about.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/about.js b/routes/about.js index 371d243..fb4d8d1 100644 --- a/routes/about.js +++ b/routes/about.js @@ -3,7 +3,7 @@ const { getLandingPage } = require('../services/contentful') const { catchErrors } = require('../handlers/errorHandlers') const router = express.Router() -/* GET the about landing page. */ +/* GET the about page. */ router.get('/', catchErrors(async function (req, res, next) { const landingPage = await getLandingPage('about', res.locals.currentLocale.code, res.locals.currentApi.id) res.render('landingPage', { title: 'About', landingPage })