agoni1212 пре 3 година
родитељ
комит
a58785945d
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      packages/compiler-sfc/src/script/utils.ts

+ 1 - 1
packages/compiler-sfc/src/script/utils.ts

@@ -101,7 +101,7 @@ export function createGetCanonicalFileName(useCaseSensitiveFileNames: boolean) {
 
 const windowsSlashRE = /\\/g
 export function normalizePath(p: string) {
-  // in the browser build, the polyfill doesn't expose posix, but defualts to
+  // in the browser build, the polyfill doesn't expose posix, but defaults to
   // posix behavior.
   return (path.posix || path).normalize(p.replace(windowsSlashRE, '/'))
 }