From d23b834b0f29e6c539d32a2404b80ce8a48c8156 Mon Sep 17 00:00:00 2001 From: JonathanMontane Date: Mon, 30 May 2016 14:27:36 +0200 Subject: [PATCH] improved syntax consistency `stdout` was written as `inline code` most of the time, except for the `console.time` and `console.timeEnd` functions which made it a bit more tedious to read about. Now it's always using inline code. --- doc/api/console.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/console.md b/doc/api/console.md index bbb96cb3d3e75d..a32cf04e5f29d0 100644 --- a/doc/api/console.md +++ b/doc/api/console.md @@ -232,7 +232,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');