From caeaf37c31a648ffd3197601c40fc8cc5a211562 Mon Sep 17 00:00:00 2001 From: Marijn Haverbeke Date: Tue, 17 Jun 2014 11:08:12 +0200 Subject: [PATCH] Fix another bogus piece of code from 31e77b975ed0bf14f68f9b0f6608bbe78d694bf0 --- bin/acorn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/acorn b/bin/acorn index a3d05f4e69..d5e5e3a511 100755 --- a/bin/acorn +++ b/bin/acorn @@ -7,7 +7,7 @@ var acorn = require("../acorn.js"); var infile, parsed, options = {}, silent = false, compact = false; function help(status) { - var print = (status == 0) ? console.out : console.error; + var print = (status == 0) ? console.log : console.error; print("usage: " + path.basename(process.argv[1]) + " [--ecma3|--ecma5] [--strictSemicolons]"); print(" [--locations] [--compact] [--silent] [--help] [--] infile"); process.exit(status);