Skip to content

Commit c362766

Browse files
committed
fix a typo in error messages (s/parcing/parsing/)
1 parent 6d2c4bc commit c362766

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Decoder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ export class Decoder<ContextType> {
159159

160160
const { headByte, pos, totalPos } = this;
161161
throw new RangeError(
162-
`Insufficient data in parcing ${prettyByte(headByte)} at ${totalPos} (${pos} in the current buffer)`,
162+
`Insufficient data in parsing ${prettyByte(headByte)} at ${totalPos} (${pos} in the current buffer)`,
163163
);
164164
}
165165

0 commit comments

Comments
 (0)