Skip to content

Commit

Permalink
Bugfix release for response stream.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeal committed May 29, 2010
1 parent 585166d commit 41111c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function request (options, callback) {

if (options.bodyStream) {
sys.error('options.bodyStream is deprecated. use options.reponseBodyStream instead.');
options.reponseBodyStream = options.bodyStream;
options.responseBodyStream = options.bodyStream;
}

options.client = options.client ? options.client : http.createClient(options.uri.port, options.uri.hostname, secure);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ "name" : "request"
, "description" : "Simplified HTTP request method."
, "tags" : ["http", "simple", "util", "utility"]
, "version" : "0.9.0"
, "version" : "0.9.1"
, "author" : "Mikeal Rogers <mikeal.rogers@gmail.com>"
, "directories" :
{ "lib" : "lib" }
Expand Down

0 comments on commit 41111c8

Please sign in to comment.