diff --git a/doc/api/util.md b/doc/api/util.md index 3843f80ce75366..28ceac1c54d7a9 100644 --- a/doc/api/util.md +++ b/doc/api/util.md @@ -133,6 +133,13 @@ Each argument is converted to a string using `util.inspect()`. util.format(1, 2, 3); // '1 2 3' ``` +If only one argument is passed to `util.format()`, it is returned as it is +without any formatting. + +```js +util.format('%% %s'); // '%% %s' +``` + ## util.inherits(constructor, superConstructor)