From 04111ce40f59b922d1551e0aad5da0a52885de1c Mon Sep 17 00:00:00 2001 From: James M Snell Date: Fri, 14 Aug 2015 11:36:39 -0700 Subject: [PATCH] doc: small typo in domain.markdown per: https://github.com/joyent/node/pull/7715 originally submitted by @tonylukasavage Reviewed By: Sakthipriyan Vairamani PR-URL: https://github.com/nodejs/node/pull/2378 --- doc/api/domain.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/domain.markdown b/doc/api/domain.markdown index 56e8f0650ad5c9..769a102c1030ad 100644 --- a/doc/api/domain.markdown +++ b/doc/api/domain.markdown @@ -32,7 +32,7 @@ process. Of course, in a normal web server, you might have many connections open, and it is not reasonable to abruptly shut those down because an error was triggered by someone else. -The better approach is send an error response to the request that +The better approach is to send an error response to the request that triggered the error, while letting the others finish in their normal time, and stop listening for new requests in that worker.