Skip to content

Commit e787600

Browse files
committed
Merge pull request #356 from tomgco/patch-1
Be consistent with quotes in examples.
2 parents eb06337 + 0cecba5 commit e787600

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

locale/en/about/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var http = require('http');
1616
http.createServer(function (req, res) {
1717
res.writeHead(200, {'Content-Type': 'text/plain'});
1818
res.end('Hello World\n');
19-
}).listen(1337, "127.0.0.1");
19+
}).listen(1337, '127.0.0.1');
2020

2121
console.log('Server running at http://127.0.0.1:1337/');
2222
```

0 commit comments

Comments
 (0)