Skip to content

Commit 2097f98

Browse files
types are lowercase
1 parent d4637c5 commit 2097f98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/binary_parser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1065,7 +1065,7 @@ export class Parser {
10651065
let sum = 0;
10661066
if (
10671067
!this.next ||
1068-
(this.next && ['Bit', 'Nest'].indexOf(this.next.type) < 0)
1068+
(this.next && ['bit', 'nest'].indexOf(this.next.type) < 0)
10691069
) {
10701070
ctx.bitFields.forEach(parser => { sum += parser.options.length as number; });
10711071

0 commit comments

Comments
 (0)