From b7573f71bf6ca56bd35e8a3e5e51dae6dac93649 Mon Sep 17 00:00:00 2001 From: Todd Cooper Date: Wed, 13 Nov 2024 16:35:16 -0500 Subject: [PATCH] Update app.js --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index e78f997..09b095d 100644 --- a/app.js +++ b/app.js @@ -3,7 +3,7 @@ const app = express(); const port = 3000; app.get('/', (req, res) => { - res.send('Hello New England Pats!'); + res.send('Hello New England!'); }); app.listen(port, () => {