From 0eb97f5035a8af7337c6e71359f1de6c9d4dfba5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Tue, 31 May 2022 15:57:50 +0200 Subject: [PATCH] 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 Reviewed-By: Mohammed Keyvanzadeh Reviewed-By: Luigi Pinca --- doc/api/console.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/console.md b/doc/api/console.md index d914b04140b8f3..335d6b767b4b44 100644 --- a/doc/api/console.md +++ b/doc/api/console.md @@ -11,7 +11,7 @@ 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