Skip to content

Commit 3cb4522

Browse files
author
Brian Swank
committed
fix 404 error typo/grammar
1 parent 57e5cb5 commit 3cb4522

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/serve.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ exports.listen = function(port, static, timeout) {
189189
res
190190
.status(404)
191191
.send(
192-
`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.`
192+
`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.`
193193
);
194194
});
195195
app.all("*", createHandler(dir, static, timeout));

0 commit comments

Comments
 (0)