From 96b166f291ed2323a079146c484adef055008257 Mon Sep 17 00:00:00 2001 From: Sam Roberts Date: Sat, 19 Jul 2014 14:34:41 -0700 Subject: [PATCH] doc: console.trace takes a message format Documentation claimed it accepted a single label argument, as time and timeEnd do, which was incorrect. Signed-off-by: Fedor Indutny --- doc/api/console.markdown | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/api/console.markdown b/doc/api/console.markdown index e7807fe..76860e5 100644 --- a/doc/api/console.markdown +++ b/doc/api/console.markdown @@ -62,9 +62,10 @@ Finish timer, record output. Example: } console.timeEnd('100-elements'); -## console.trace(label) +## console.trace(message, [...]) -Print a stack trace to stderr of the current position. +Print to stderr `'Trace :'`, followed by the formatted message and stack trace +to the current position. ## console.assert(value, [message], [...]) -- 2.7.4