diff options
author | Chimrod <> | 2023-10-25 22:23:06 +0200 |
---|---|---|
committer | Chimrod <> | 2023-10-25 22:23:06 +0200 |
commit | fc235a1d2b7f10e6b5b1d7ed4328e2f9f7714171 (patch) | |
tree | 99530ff84778167ed02b267dbc1ef7f9c1aff2ac /lib/syntax/check.ml | |
parent | 319c1e4474f4fefde688720b78e8abf315513a32 (diff) |
Updated the documentation
Diffstat (limited to 'lib/syntax/check.ml')
-rw-r--r-- | lib/syntax/check.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/syntax/check.ml b/lib/syntax/check.ml index 54eb295..7db3286 100644 --- a/lib/syntax/check.ml +++ b/lib/syntax/check.ml @@ -1,5 +1,3 @@ -open StdLabels - (** This module provide a way to create new Id dynamically in the runtime, and some fonctions for comparing them. *) module Id : sig @@ -89,6 +87,8 @@ module type App = sig val t : t array end +open StdLabels + module Helper = struct type 'a expr_list = { witness : 'a Id.typeid; values : 'a list } |