diff --git a/doc/api/console.md b/doc/api/console.md index ac0ce25a37c7a6..9fb8c37a6df66e 100644 --- a/doc/api/console.md +++ b/doc/api/console.md @@ -236,7 +236,7 @@ added: v0.1.104 Starts a timer that can be used to compute the duration of an operation. Timers are identified by a unique `label`. Use the same `label` when you call [`console.timeEnd()`][] to stop the timer and output the elapsed time in -milliseconds to stdout. Timer durations are accurate to the sub-millisecond. +milliseconds to `stdout`. Timer durations are accurate to the sub-millisecond. ### console.timeEnd(label) Stops a timer that was previously started by calling [`console.time()`][] and -prints the result to stdout: +prints the result to `stdout`: ```js console.time('100-elements');