chore: fix typo (#7680)

This commit is contained in:
丶远方 2023-02-12 00:55:21 +08:00 committed by GitHub
parent 1d09540798
commit a0e7dc3343
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -719,7 +719,7 @@ export function transformAST(
while (i--) {
const char = s.original.charAt(i)
if (char === '\n') {
// only insert semi if it's actually the fisrt thign after
// only insert semi if it's actually the first thing after
// newline
s.prependRight(node.start! + offset, ';')
break