From 4c65d0a3d31297e69b40c39dbec6c2bf0bf49753 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sun, 9 Feb 2020 16:06:13 -1000 Subject: [PATCH] doc: reword possessive form of Node.js in repl.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Throughout the docs, we sometimes write the possessive of _Node.js_ as _Node.js'_ and other times as _Node.js's_. The former conforms with some generally accepted style guides (e.g., Associated Press Stylebook) while the latter complies with others (e.g., Chicago Manual of Style). Since there is no clear authoritative answer as to which form is correct, and since (at least to me) both are visually jarring and sometimes cause a pause to understand, I'd like to reword things to eliminate the possessive form where possible. This is one of those examples. PR-URL: https://github.com/nodejs/node/pull/31713 Reviewed-By: Ben Noordhuis Reviewed-By: Beth Griggs Reviewed-By: James M Snell Reviewed-By: Tobias Nießen Reviewed-By: Colin Ihrig Reviewed-By: Anna Henningsen Reviewed-By: Ruben Bridgewater --- doc/api/repl.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/repl.md b/doc/api/repl.md index 8305b1d2c920ca..8d5fa87f2c3f17 100644 --- a/doc/api/repl.md +++ b/doc/api/repl.md @@ -69,7 +69,7 @@ The following key combinations in the REPL have these special effects: ### Default Evaluation By default, all instances of [`repl.REPLServer`][] use an evaluation function -that evaluates JavaScript expressions and provides access to Node.js' built-in +that evaluates JavaScript expressions and provides access to Node.js built-in modules. This default behavior can be overridden by passing in an alternative evaluation function when the [`repl.REPLServer`][] instance is created.