remove ugly tabs

This commit is contained in:
Simon Cruanes 2014-05-27 13:25:15 +02:00
parent 9a10d477ee
commit 3127f046de
2 changed files with 8 additions and 6 deletions

View file

@ -34,9 +34,10 @@ type ('a,'b) tree =
| Empty
| Node of ('a,'b) tree * 'a * 'b * ('a,'b) tree * int
type ('a,'b) t =
{ cmp: 'a comparator;
t: ('a,'b) tree }
type ('a,'b) t = {
cmp: 'a comparator;
t: ('a,'b) tree
}
let empty ~cmp = { cmp; t=Empty }

View file

@ -32,9 +32,10 @@ type ('a,'b) tree = private
| Empty
| Node of ('a,'b) tree * 'a * 'b * ('a,'b) tree * int
type ('a,'b) t = private
{ cmp: 'a comparator;
t: ('a,'b) tree }
type ('a,'b) t = private {
cmp: 'a comparator;
t: ('a,'b) tree
}
val empty : cmp:'a comparator -> ('a,'b) t
(** Empty tree *)