From fe8fe0ff0d4e79066921377fd94f10986918ccc1 Mon Sep 17 00:00:00 2001 From: Berkeley Martinez Date: Sun, 6 Dec 2015 22:42:52 -0800 Subject: [PATCH] Fix lint error --- server/boot/randomAPIs.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/server/boot/randomAPIs.js b/server/boot/randomAPIs.js index 8b401a763d..a7493574c5 100644 --- a/server/boot/randomAPIs.js +++ b/server/boot/randomAPIs.js @@ -36,7 +36,10 @@ module.exports = function(app) { router.get('/stories', showTestimonials); router.get('/all-stories', showAllTestimonials); router.get('/links', showLinks); - router.get('/the-fastest-web-page-on-the-internet', theFastestWebPageOnTheInternet); + router.get( + '/the-fastest-web-page-on-the-internet', + theFastestWebPageOnTheInternet + ); app.use(router);