From 3cb45229c4e7fbb53415e02c839e0ecd05abac74 Mon Sep 17 00:00:00 2001 From: Brian Swank Date: Mon, 5 Aug 2019 14:42:29 -0400 Subject: [PATCH] fix 404 error typo/grammar --- lib/serve.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/serve.js b/lib/serve.js index 49ba9be1..f39ea2af 100644 --- a/lib/serve.js +++ b/lib/serve.js @@ -189,7 +189,7 @@ exports.listen = function(port, static, timeout) { res .status(404) .send( - `You have requested the root of http://localhost:${port}. This is likely a mistake. netlify-lambda serves functions at htttp://localhost:${port}/.netlify/functions/your-function-name, please fix your code.` + `You have requested the root of http://localhost:${port}. This is likely a mistake. netlify-lambda serves functions at http://localhost:${port}/.netlify/functions/your-function-name; please fix your code.` ); }); app.all("*", createHandler(dir, static, timeout));