diff --git a/doc/api/cluster.md b/doc/api/cluster.md index be612297366934..e913bdcd954e9c 100644 --- a/doc/api/cluster.md +++ b/doc/api/cluster.md @@ -436,7 +436,7 @@ If the graceful disconnect behavior is not needed, use `worker.process.kill()`. Causes `.exitedAfterDisconnect` to be set. -This method is aliased as `worker.destroy()` for backwards compatibility. +This method is aliased as `worker.destroy()` for backward compatibility. In a worker, `process.kill()` exists, but it is not this function; it is [`kill()`][]. diff --git a/doc/api/crypto.md b/doc/api/crypto.md index 4c100ddbb31fe5..4ec5036b6b54a3 100644 --- a/doc/api/crypto.md +++ b/doc/api/crypto.md @@ -1592,7 +1592,7 @@ The default encoding to use for functions that can take either strings or [buffers][`Buffer`]. The default value is `'buffer'`, which makes methods default to [`Buffer`][] objects. -The `crypto.DEFAULT_ENCODING` mechanism is provided for backwards compatibility +The `crypto.DEFAULT_ENCODING` mechanism is provided for backward compatibility with legacy programs that expect `'latin1'` to be the default encoding. New applications should expect the default to be `'buffer'`. diff --git a/doc/api/process.md b/doc/api/process.md index 6d8fad4faf86d7..f06f4b56932bb6 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -2287,7 +2287,7 @@ important ways: * Pipes (and sockets): *synchronous* on Windows, *asynchronous* on POSIX These behaviors are partly for historical reasons, as changing them would -create backwards incompatibility, but they are also expected by some users. +create backward incompatibility, but they are also expected by some users. Synchronous writes avoid problems such as output written with `console.log()` or `console.error()` being unexpectedly interleaved, or not written at all if diff --git a/doc/api/readline.md b/doc/api/readline.md index c948e2fda5aafd..c5829bf746629f 100644 --- a/doc/api/readline.md +++ b/doc/api/readline.md @@ -813,7 +813,7 @@ const { createInterface } = require('readline');
ctrl
+ w
or ctrl
+ backspace
ctrl
+ backspace
Doesn't
work on Linux, Mac and Windows