From 51dfa0ebdfce5e3cd7d8255715ad3d49f38a817d Mon Sep 17 00:00:00 2001 From: Miao Jiang Date: Thu, 29 Nov 2012 17:04:28 +0800 Subject: [PATCH] Rename effective_options to effectiveOptions. --- examples/test-get-info.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/test-get-info.js b/examples/test-get-info.js index e7adfc8..b5da0c3 100644 --- a/examples/test-get-info.js +++ b/examples/test-get-info.js @@ -29,7 +29,7 @@ requests.forEach(function(request) { curl = Curl.create(defaultOptions); print('GET ' + url, 'green') curl(url, options, function(err) { - print('GET ' + this.url + ' ' + JSON.stringify(this.effective_options) + " finished.", 'green'); + print('GET ' + this.url + ' ' + JSON.stringify(this.effectiveOptions) + " finished.", 'green'); if (err) return print(err, 'red');