From 313d1a30098e8f0fbd201640a83d64f0a699034e Mon Sep 17 00:00:00 2001 From: Sam Roberts Date: Tue, 24 Jan 2017 11:37:46 -0800 Subject: [PATCH] doc: for style, remove "isn't" contraction PR-URL: https://github.com/nodejs/node/pull/10981 Reviewed-By: Colin Ihrig Reviewed-By: James M Snell Reviewed-By: Michael Dawson --- doc/api/console.md | 2 +- doc/api/debugger.md | 2 +- doc/api/domain.md | 2 +- doc/api/globals.md | 10 +++++----- doc/api/http.md | 16 ++++++++-------- doc/api/modules.md | 2 +- 6 files changed, 17 insertions(+), 17 deletions(-) diff --git a/doc/api/console.md b/doc/api/console.md index 39b233abf874b9..7bc54641a21714 100644 --- a/doc/api/console.md +++ b/doc/api/console.md @@ -69,7 +69,7 @@ const Console = console.Console; Creates a new `Console` by passing one or two writable stream instances. `stdout` is a writable stream to print log or info output. `stderr` -is used for warning or error output. If `stderr` isn't passed, warning and error +is used for warning or error output. If `stderr` is not passed, warning and error output will be sent to `stdout`. ```js diff --git a/doc/api/debugger.md b/doc/api/debugger.md index c8a61d2ce742f8..7112b403fe35f3 100644 --- a/doc/api/debugger.md +++ b/doc/api/debugger.md @@ -117,7 +117,7 @@ script.js on line 1 It is also possible to set a breakpoint in a file (module) that -isn't loaded yet: +is not loaded yet: ```txt $ node debug test/fixtures/break-in-module/main.js diff --git a/doc/api/domain.md b/doc/api/domain.md index f9c7c4fad4295e..1cc25e0cf8d8fb 100644 --- a/doc/api/domain.md +++ b/doc/api/domain.md @@ -153,7 +153,7 @@ if (cluster.isMaster) { server.listen(PORT); } -// This part isn't important. Just an example routing thing. +// This part is not important. Just an example routing thing. // You'd put your fancy application logic here. function handleRequest(req, res) { switch (req.url) { diff --git a/doc/api/globals.md b/doc/api/globals.md index f14a7833b2b2f0..a60cd4cc226fb2 100644 --- a/doc/api/globals.md +++ b/doc/api/globals.md @@ -32,7 +32,7 @@ added: v0.1.27 The directory name of the current module. This the same as the [`path.dirname()`][] of the [`__filename`][]. -`__dirname` isn't actually a global but rather local to each module. +`__dirname` is not actually a global but rather local to each module. Example: running `node example.js` from `/Users/mjr` @@ -60,7 +60,7 @@ command line. See [`__dirname`][] for the directory name of the current module. -`__filename` isn't actually a global but rather local to each module. +`__filename` is not actually a global but rather local to each module. Examples: @@ -132,7 +132,7 @@ A reference to the `module.exports` that is shorter to type. See [module system documentation][] for details on when to use `exports` and when to use `module.exports`. -`exports` isn't actually a global but rather local to each module. +`exports` is not actually a global but rather local to each module. See the [module system documentation][] for more information. @@ -163,7 +163,7 @@ A reference to the current module. In particular `module.exports` is used for defining what a module exports and makes available through `require()`. -`module` isn't actually a global but rather local to each module. +`module` is not actually a global but rather local to each module. See the [module system documentation][] for more information. @@ -187,7 +187,7 @@ added: v0.1.13 * {Function} -To require modules. See the [Modules][] section. `require` isn't actually a +To require modules. See the [Modules][] section. `require` is not actually a global but rather local to each module. ### require.cache diff --git a/doc/api/http.md b/doc/api/http.md index 33d3a6c81d43a8..6dc929d697e01e 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -298,7 +298,7 @@ added: v0.7.0 * `head` {Buffer} Emitted each time a server responds to a request with a `CONNECT` method. If this -event isn't being listened for, clients receiving a `CONNECT` method will have +event is not being listened for, clients receiving a `CONNECT` method will have their connections closed. A client and server pair that shows you how to listen for the `'connect'` event: @@ -396,7 +396,7 @@ added: v0.1.94 * `head` {Buffer} Emitted each time a server responds to a request with an upgrade. If this -event isn't being listened for, clients receiving an upgrade header will have +event is not being listened for, clients receiving an upgrade header will have their connections closed. A client server pair that show you how to listen for the `'upgrade'` event. @@ -489,7 +489,7 @@ call `request.end()` or write the first chunk of request data. It then tries hard to pack the request headers and data into a single TCP packet. That's usually what you want (it saves a TCP round-trip) but not when the first -data isn't sent until possibly much later. `request.flushHeaders()` lets you bypass +data is not sent until possibly much later. `request.flushHeaders()` lets you bypass the optimization and kickstart the request. ### request.setNoDelay([noDelay]) @@ -565,7 +565,7 @@ added: v0.3.0 * `response` {http.ServerResponse} Emitted each time a request with an HTTP `Expect: 100-continue` is received. -If this event isn't listened for, the server will automatically respond +If this event is not listened for, the server will automatically respond with a `100 Continue` as appropriate. Handling this event involves calling [`response.writeContinue()`][] if the client @@ -585,7 +585,7 @@ added: v5.5.0 * `response` {http.ServerResponse} Emitted each time a request with an HTTP `Expect` header is received, where the -value is not `100-continue`. If this event isn't listened for, the server will +value is not `100-continue`. If this event is not listened for, the server will automatically respond with a `417 Expectation Failed` as appropriate. Note that when this event is emitted and handled, the [`'request'`][] event will @@ -642,8 +642,8 @@ added: v0.7.0 * `socket` {net.Socket} Network socket between the server and client * `head` {Buffer} The first packet of the tunneling stream (may be empty) -Emitted each time a client requests an HTTP `CONNECT` method. If this event isn't -listened for, then clients requesting a `CONNECT` method will have their +Emitted each time a client requests an HTTP `CONNECT` method. If this event is +not listened for, then clients requesting a `CONNECT` method will have their connections closed. After this event is emitted, the request's socket will not have a `'data'` @@ -684,7 +684,7 @@ added: v0.1.94 * `socket` {net.Socket} Network socket between the server and client * `head` {Buffer} The first packet of the upgraded stream (may be empty) -Emitted each time a client requests an HTTP upgrade. If this event isn't +Emitted each time a client requests an HTTP upgrade. If this event is not listened for, then clients requesting an upgrade will have their connections closed. diff --git a/doc/api/modules.md b/doc/api/modules.md index e4bd745d7ed62a..43bddab4faa310 100644 --- a/doc/api/modules.md +++ b/doc/api/modules.md @@ -463,7 +463,7 @@ added: v0.1.16 In each module, the `module` free variable is a reference to the object representing the current module. For convenience, `module.exports` is -also accessible via the `exports` module-global. `module` isn't actually +also accessible via the `exports` module-global. `module` is not actually a global but rather local to each module. ### module.children