Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/v0.10' into v0.12
Browse files Browse the repository at this point in the history
Conflicts:
	lib/buffer.js
  • Loading branch information
Julien Gilli committed Mar 5, 2015
2 parents 63fbd10 + d01a900 commit b0425f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/buffer.js
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ Buffer.isEncoding = function(encoding) {

Buffer.concat = function(list, length) {
if (!util.isArray(list))
throw new TypeError('Usage: Buffer.concat(list[, length])');
throw new TypeError('list argument must be an Array of Buffers.');

if (util.isUndefined(length)) {
length = 0;
Expand Down

0 comments on commit b0425f0

Please sign in to comment.