diff --git a/locale/en/about/index.md b/locale/en/about/index.md index 7d7ca39314001..8b9a84882d682 100644 --- a/locale/en/about/index.md +++ b/locale/en/about/index.md @@ -14,13 +14,13 @@ fired, but if there is no work to be done Node is sleeping. const http = require('http'); const hostname = '127.0.0.1'; -const post = 1337; +const port = 1337; http.createServer((req, res) => { res.writeHead(200, { 'Content-Type': 'text/plain' }); res.end('Hello World\n'); -}).listen(post, hostname, () => { - console.log(`Server running at http://${hostname}:${post}/`); +}).listen(port, hostname, () => { + console.log(`Server running at http://${hostname}:${port}/`); }); ```