small doc change

This commit is contained in:
Simon Cruanes 2021-06-06 17:16:26 -04:00
parent 78a530ccee
commit 7081a411c8

View file

@ -9,7 +9,6 @@ open CCShims_
type tree = L of int | N of tree * tree type tree = L of int | N of tree * tree
end end
open T open T
open Result
let mk_leaf x = L x let mk_leaf x = L x
let mk_node x y = N(x,y) let mk_node x y = N(x,y)