From 0242da3432c591ecf989f5a0fd8bc6afa88d72d0 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 `console.trace()` function prints 'Trace: ', not 'Trace :'. --- 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 59e5ae368569ff..28dd0b854b2bd0 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