Skip to content

Commit

Permalink
Merge pull request #170 from bswank/fix-404-error-typo/grammar
Browse files Browse the repository at this point in the history
fix 404 error typo/grammar
  • Loading branch information
swyxio authored Aug 5, 2019
2 parents 57e5cb5 + 3cb4522 commit 9f9464b
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 9f9464b

Please sign in to comment.