File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -638,7 +638,7 @@ export class Parser {
638638 ! aliasRegistry . has ( options . type ) &&
639639 ! ( options . type in PRIMITIVE_SIZES )
640640 ) {
641- throw new Error ( `Array element type "${ options . type } " is unkown .` ) ;
641+ throw new Error ( `Array element type "${ options . type } " is unknown .` ) ;
642642 }
643643
644644 return this . setNextParser ( "array" , varName , options ) ;
@@ -675,7 +675,7 @@ export class Parser {
675675 ! aliasRegistry . has ( value ) &&
676676 ! ( ( value as string ) in PRIMITIVE_SIZES )
677677 ) {
678- throw new Error ( `Choice type "${ value } " is unkown .` ) ;
678+ throw new Error ( `Choice type "${ value } " is unknown .` ) ;
679679 }
680680 }
681681
@@ -719,7 +719,7 @@ export class Parser {
719719 ! ( options . type in PRIMITIVE_SIZES ) &&
720720 ! aliasRegistry . has ( options . type )
721721 ) {
722- throw new Error ( `Pointer type "${ options . type } " is unkown .` ) ;
722+ throw new Error ( `Pointer type "${ options . type } " is unknown .` ) ;
723723 }
724724
725725 return this . setNextParser ( "pointer" , varName , options ) ;
You can’t perform that action at this time.
0 commit comments