Skip to content

Commit

Permalink
fix 404 error typo/grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Swank committed Aug 5, 2019
1 parent 57e5cb5 commit 3cb4522
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/serve.js
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 3cb4522

Please sign in to comment.