From b273758a408c5f2a6bce1d65fc9ce2c1064b7e3c Mon Sep 17 00:00:00 2001 From: Miao Jiang Date: Sat, 1 Dec 2012 21:39:13 +0800 Subject: [PATCH] Rename effective_options to effectiveOptions. --- examples/quick-start.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/quick-start.js b/examples/quick-start.js index 0ced5f9..fce06bc 100644 --- a/examples/quick-start.js +++ b/examples/quick-start.js @@ -19,7 +19,7 @@ url2 = 'www.google.com'; options2 = {FOLLOWLOCATION: 1}; console.info("GET " + url + " with default options " + JSON.stringify(curl2.defaultOptions) + ' and options ' + JSON.stringify(options2)); curl2(url2, options2, function(err) { - console.info("\x1b[32mGet " + this.url + " with " + JSON.stringify(this.effective_options) + " finished.\x1b[0m"); + console.info("\x1b[32mGet " + this.url + " with " + JSON.stringify(this.effectiveOptions) + " finished.\x1b[0m"); console.info("\tstatus: " + this.status); console.info("\tbody length: " + this.body.length); console.info("\tinfo SIZE_DOWNLOAD: " + this.info('SIZE_DOWNLOAD'));