summaryrefslogtreecommitdiff
path: root/doc/api/util.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/util.markdown')
-rw-r--r--doc/api/util.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/util.markdown b/doc/api/util.markdown
index cc639ddb4..376596340 100644
--- a/doc/api/util.markdown
+++ b/doc/api/util.markdown
@@ -261,7 +261,7 @@ through the `constructor.super_` property.
Marks that a method should not be used any more.
- exports.puts = exports.deprecate(function() {
+ exports.puts = util.deprecate(function() {
for (var i = 0, len = arguments.length; i < len; ++i) {
process.stdout.write(arguments[i] + '\n');
}