Skip to content

Commit

Permalink
fix(compiler-core): fix referencing typo (#9708)
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoxiangmoe authored Nov 29, 2023
1 parent 509c192 commit 3071de4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/compiler-core/src/tokenizer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@ export default class Tokenizer {
}
}
private stateBeforeDeclaration(c: number): void {
if (c === CharCodes.LeftSqaure) {
if (c === CharCodes.LeftSquare) {
this.state = State.CDATASequence
this.sequenceIndex = 0
} else {
Expand Down

0 comments on commit 3071de4

Please sign in to comment.