Ver Fonte

chore: code comment formatting (#1089) [ci skip]

HiiTea há 6 anos atrás
pai
commit
f0d52d5428
1 ficheiros alterados com 3 adições e 3 exclusões
  1. 3 3
      packages/compiler-core/src/parse.ts

+ 3 - 3
packages/compiler-core/src/parse.ts

@@ -56,9 +56,9 @@ export const defaultParserOptions: MergedParserOptions = {
 
 export const enum TextModes {
   //          | Elements | Entities | End sign              | Inside of
-  DATA, //    | ✔       | ✔       | End tags of ancestors |
-  RCDATA, //  | ✘       | ✔       | End tag of the parent | <textarea>
-  RAWTEXT, // | ✘       | ✘       | End tag of the parent | <style>,<script>
+  DATA, //    | ✔        | ✔        | End tags of ancestors |
+  RCDATA, //  | ✘        | ✔        | End tag of the parent | <textarea>
+  RAWTEXT, // | ✘        | ✘        | End tag of the parent | <style>,<script>
   CDATA,
   ATTRIBUTE_VALUE
 }