From fcbd2bc3fdfeb8de177e86bed848978e524fe412 Mon Sep 17 00:00:00 2001 From: James M Snell Date: Fri, 14 Aug 2015 09:48:49 -0700 Subject: [PATCH] doc: correct grammar in cluster.markdown per: https://github.com/joyent/node/pull/14352 originally submitted by @AlexKVal --- doc/api/cluster.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/cluster.markdown b/doc/api/cluster.markdown index 06abdccc0d3aac..13ac19ec2eba92 100644 --- a/doc/api/cluster.markdown +++ b/doc/api/cluster.markdown @@ -24,7 +24,7 @@ all share server ports. }); } else { // Workers can share any TCP connection - // In this case its a HTTP server + // In this case it is an HTTP server http.createServer(function(req, res) { res.writeHead(200); res.end("hello world\n");