From d96075c4b6fa35cb1d1f5b6ecf66cf3de82d5d12 Mon Sep 17 00:00:00 2001 From: Mykola Bilochub Date: Fri, 20 Apr 2018 21:03:27 +0300 Subject: [PATCH] doc: fix a typo in console documentation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `console.trace()` function prints 'Trace: ', not 'Trace :'. PR-URL: https://github.com/nodejs/node/pull/20176 Reviewed-By: Tobias Nießen Reviewed-By: Luigi Pinca Reviewed-By: Vse Mozhet Byt --- 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 59e5ae36856..28dd0b854b2 100644 --- a/doc/api/console.md +++ b/doc/api/console.md @@ -425,7 +425,7 @@ added: v0.1.104 * `message` {any} * `...args` {any} -Prints to `stderr` the string `'Trace :'`, followed by the [`util.format()`][] +Prints to `stderr` the string `'Trace: '`, followed by the [`util.format()`][] formatted message and stack trace to the current position in the code. ```js