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:
authorTobias Nießen <tniessen@tnie.de>2022-05-31 16:57:50 +0300
committerGitHub <noreply@github.com>2022-05-31 16:57:50 +0300
commit7ad5b420aebc1bcd07be187481cf48a4180a60c0 (patch)
treee87ef65a3e6b6e949c36e27ed152957be3a8b46b
parent122c377eb999a73fd724568c7a3704c13d4c1cfd (diff)
doc: use serial comma in console docs
Refs: https://github.com/nodejs/node/pull/11321 Refs: https://github.com/nodejs/node/pull/17384 PR-URL: https://github.com/nodejs/node/pull/43257 Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
-rw-r--r--doc/api/console.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/console.md b/doc/api/console.md
index 3c81a5784e2..1818d6f776b 100644
--- a/doc/api/console.md
+++ b/doc/api/console.md
@@ -11,7 +11,7 @@ the JavaScript console mechanism provided by web browsers.
The module exports two specific components:
-* A `Console` class with methods such as `console.log()`, `console.error()` and
+* A `Console` class with methods such as `console.log()`, `console.error()`, and
`console.warn()` that can be used to write to any Node.js stream.
* A global `console` instance configured to write to [`process.stdout`][] and
[`process.stderr`][]. The global `console` can be used without calling