doc: fix a typo in console documentation

`console.trace()` function prints 'Trace: ', not 'Trace :'.

PR-URL: https://github.com/nodejs/node/pull/20176
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
This commit is contained in:
Mykola Bilochub 2018-04-20 21:03:27 +03:00 committed by Vse Mozhet Byt
parent 6e6913b5db
commit d96075c4b6

View File

@ -425,7 +425,7 @@ added: v0.1.104
* `message` {any} * `message` {any}
* `...args` {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. formatted message and stack trace to the current position in the code.
```js ```js