Skip to content

Commit

Permalink
Fix a listening message typo
Browse files Browse the repository at this point in the history
Signed-off-by: Abderrahim SOUBAI-ELIDRISI <gx.coder@gmail.com>
  • Loading branch information
soub4i authored and alexellis committed Feb 21, 2022
1 parent 489d1a0 commit 26e8e43
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion template/node16/index.js
Expand Up @@ -138,7 +138,7 @@ app.options('/*', middleware);
const port = process.env.http_port || 3000;

app.listen(port, () => {
console.log(`node14 listening on port: ${port}`)
console.log(`node16 listening on port: ${port}`)
});


2 changes: 1 addition & 1 deletion template/node17/index.js
Expand Up @@ -138,7 +138,7 @@ app.options('/*', middleware);
const port = process.env.http_port || 3000;

app.listen(port, () => {
console.log(`node14 listening on port: ${port}`)
console.log(`node17 listening on port: ${port}`)
});


0 comments on commit 26e8e43

Please sign in to comment.