Skip to content

Commit

Permalink
docs: fix small typo (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksey Druzhinin committed Oct 21, 2020
1 parent 64b6648 commit e3d272f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ var parser = require('socket.io-parser');
var encoder = new parser.Encoder();
var packet = {
type: parser.BINARY_EVENT,
data: {i: new Buffer(1234), j: new Blob([new ArrayBuffer(2)])}
data: {i: new Buffer(1234), j: new Blob([new ArrayBuffer(2)])},
id: 15
};
encoder.encode(packet, function(encodedPackets) {
Expand Down

0 comments on commit e3d272f

Please sign in to comment.