Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2020-09-15 03:28:27 +0300
committerRich Trott <rtrott@gmail.com>2020-09-17 12:01:07 +0300
commitc205f672e9cf0c70ea26f87eb97342947a244e18 (patch)
tree876d9901087811e63f1da5b41b22a456e62f87b9 /doc/api/synopsis.md
parent18462e0c1d5f3b3a3e86b7b40fb65975f1e27381 (diff)
doc: use command-line/command line consistently
Docs switch between "command line" and "command-line" with no apparent uniformity. Microsoft Style Guide prescribes "command line" as a noun and "command-line" as a modifier, which makes a lot of sense to me. Updating docs as appropriate. PR-URL: https://github.com/nodejs/node/pull/35198 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Diffstat (limited to 'doc/api/synopsis.md')
-rw-r--r--doc/api/synopsis.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/synopsis.md b/doc/api/synopsis.md
index 8ae933a499a..1a8fd3ab4bb 100644
--- a/doc/api/synopsis.md
+++ b/doc/api/synopsis.md
@@ -7,7 +7,7 @@
`node [options] [V8 options] [script.js | -e "script" | - ] [arguments]`
-Please see the [Command Line Options][] document for more information.
+Please see the [Command-line options][] document for more information.
## Example
An example of a [web server][] written with Node.js which responds with
@@ -86,6 +86,6 @@ Now, open any preferred web browser and visit `http://127.0.0.1:3000`.
If the browser displays the string `Hello, World!`, that indicates
the server is working.
-[Command Line Options]: cli.html#cli_command_line_options
+[Command-line options]: cli.html#cli_command_line_options
[this guide]: https://nodejs.org/en/download/package-manager/
[web server]: http.html