소스 검색

chore: fix typo (#7680)

丶远方 3 년 전
부모
커밋
a0e7dc3343
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packages/reactivity-transform/src/reactivityTransform.ts

+ 1 - 1
packages/reactivity-transform/src/reactivityTransform.ts

@@ -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