From 30439861b2f4f71d3f2523615b7c2f04686f2904 Mon Sep 17 00:00:00 2001 From: Devon Rifkin Date: Fri, 2 Dec 2016 11:03:43 -0600 Subject: [PATCH] =?UTF-8?q?doc:=20it=E2=80=99s=20->=20its=20in=20api/child?= =?UTF-8?q?=5Fprocess.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/10090 Reviewed-By: Colin Ihrig Reviewed-By: Anna Henningsen --- doc/api/child_process.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/child_process.md b/doc/api/child_process.md index 858e87f9805bac..7885677effa6b1 100644 --- a/doc/api/child_process.md +++ b/doc/api/child_process.md @@ -278,7 +278,7 @@ allows messages to be passed back and forth between the parent and child. See It is important to keep in mind that spawned Node.js child processes are independent of the parent with exception of the IPC communication channel -that is established between the two. Each process has it's own memory, with +that is established between the two. Each process has its own memory, with their own V8 instances. Because of the additional resource allocations required, spawning a large number of child Node.js processes is not recommended.