fix(array): small change in signatures

This commit is contained in:
Simon Cruanes 2018-03-28 20:20:09 -05:00
parent 5986955fb6
commit c04ee13d6e
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@ type 'a printer = Format.formatter -> 'a -> unit
(** {2 Arrays} *)
include module type of Array
include module type of struct include Array end
type 'a t = 'a array

View file

@ -13,7 +13,7 @@ type 'a printer = Format.formatter -> 'a -> unit
(** {2 Arrays} *)
include module type of ArrayLabels
include module type of struct include ArrayLabels end
type 'a t = 'a array