From 0cecba5bcd6a1daf84e85578dc53cb35bfb094b5 Mon Sep 17 00:00:00 2001 From: Tom Gallacher Date: Fri, 13 Nov 2015 13:07:36 +0000 Subject: [PATCH] Be consistent with quotes in examples. --- locale/en/about/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locale/en/about/index.md b/locale/en/about/index.md index dad32f8837efc..e6ea76ad9625f 100644 --- a/locale/en/about/index.md +++ b/locale/en/about/index.md @@ -16,7 +16,7 @@ var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}); res.end('Hello World\n'); -}).listen(1337, "127.0.0.1"); +}).listen(1337, '127.0.0.1'); console.log('Server running at http://127.0.0.1:1337/'); ```