Commit 4d667f19 authored by Taddeüs Kroes's avatar Taddeüs Kroes

Fixed compilation warning

parent 71ae054f
......@@ -38,7 +38,7 @@ let rec short = function
(* rgb(r,g,b) -> #rrggbb *)
| Function ("rgb", Nary (",", [r; g; b]))
when is_num r & is_num g & is_num b ->
when is_num r && is_num g && is_num b ->
let i c =
match clip c with
| Number (n, None) -> int_of_float n
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment