summaryrefslogtreecommitdiff
path: root/doc/api/console.md
diff options
context:
space:
mode:
authorNatanael Log <natte.log@gmail.com>2017-07-01 15:10:36 +0200
committerVse Mozhet Byt <vsemozhetbyt@gmail.com>2017-07-04 18:53:50 +0300
commitf2149d4ea44c56cb9d7458b7b3c83b838f96c72f (patch)
tree13ff56a6bef90600ab70f428b54eee989d4ac698 /doc/api/console.md
parent5b1d12a092c2c38ecb3da0d9b59c702c625e7ae3 (diff)
downloadandroid-node-v8-f2149d4ea44c56cb9d7458b7b3c83b838f96c72f.tar.gz
android-node-v8-f2149d4ea44c56cb9d7458b7b3c83b838f96c72f.tar.bz2
android-node-v8-f2149d4ea44c56cb9d7458b7b3c83b838f96c72f.zip
doc, util, console: clarify ambiguous docs
Add clarification to the documentation on util.format() and console.log() regarding how excessive arguments are treated when the first argument is a non-format string compared to when it is not a string at all. PR-URL: https://github.com/nodejs/node/pull/14027 Fixes: https://github.com/nodejs/node/issues/13908 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'doc/api/console.md')
-rw-r--r--doc/api/console.md4
1 files changed, 1 insertions, 3 deletions
diff --git a/doc/api/console.md b/doc/api/console.md
index 3411d3ce0a..4939ed77be 100644
--- a/doc/api/console.md
+++ b/doc/api/console.md
@@ -246,9 +246,7 @@ console.log('count:', count);
// Prints: count: 5, to stdout
```
-If formatting elements (e.g. `%d`) are not found in the first string then
-[`util.inspect()`][] is called on each argument and the resulting string
-values are concatenated. See [`util.format()`][] for more information.
+See [`util.format()`][] for more information.
### console.time(label)
<!-- YAML