Skip to content
Snippets Groups Projects
Commit 4d667f19 authored by Taddeüs Kroes's avatar Taddeüs Kroes
Browse files

Fixed compilation warning

parent 71ae054f
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment