Skip to content

Commit

Permalink
Fix capitalisation of CursorBuffer autogenerated methods
Browse files Browse the repository at this point in the history
  • Loading branch information
GothAck committed Oct 30, 2015
1 parent 1ed86fd commit 9333587
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/endianbuffer.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,9 @@ export default class EndianBuffer {

export class CursorBuffer extends EndianBuffer {
static lengths = new Map([
['Int8', 1], ['UInt8', 1],
['Int16', 2], ['UInt16', 2],
['Int32', 4], ['UInt32', 4],
['Int8', 1], ['Uint8', 1],
['Int16', 2], ['Uint16', 2],
['Int32', 4], ['Uint32', 4],
['Float32', 4], ['Float64', 8],
]);

Expand Down

0 comments on commit 9333587

Please sign in to comment.