소스 검색

Add todo item + moved comment

Taddeus Kroes 10 년 전
부모
커밋
4350368cd7
2개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 0
      README.md
  2. 1 1
      types.ml

+ 1 - 0
README.md

@@ -131,3 +131,4 @@ TODO / bugs
   it is better than putting everything at the end.
 - `border:none` could be `border:0`, or in general any shorthand that has both
   a `style` and `width` property should be transformed from `none` into `0`.
+- Automated test suite: auto-diff css files and expected minified versions.

+ 1 - 1
types.ml

@@ -27,8 +27,8 @@ and pseudo_class_arg =
   | Nth of nth
 and nth =
   | Even | Odd
-  (* a and b in an+b *)
   | Formula of int * int
+  (* a and b in an+b *)
 
 type media_expr = string * expr option
 type media_query = string option * string option * media_expr list