Browse Source

typo

patch-2
Ryan X. Charles 10 years ago
parent
commit
cf4668f501
  1. 2
      lib/bufferwriter.js

2
lib/bufferwriter.js

@ -2,7 +2,7 @@ var BN = require('./bn');
var BufferWriter = function BufferWriter(obj) { var BufferWriter = function BufferWriter(obj) {
if (!(this instanceof BufferWriter)) if (!(this instanceof BufferWriter))
return new BufferReader(obj); return new BufferWriter(obj);
if (obj) if (obj)
this.set(obj); this.set(obj);
else else

Loading…
Cancel
Save