summaryrefslogtreecommitdiff
path: root/src/Collections.ml
diff options
context:
space:
mode:
authorSon Ho2022-01-29 12:32:37 +0100
committerSon Ho2022-01-29 12:32:37 +0100
commita68afcaeba2c0a97e7fb863cd7c0490c4f3c4ac8 (patch)
tree46564f590aa5d91b8f87f7bb8343d6b8faa97c83 /src/Collections.ml
parent4273eee7470e77a309a5cac69fbba23a37402b74 (diff)
Make progress on PureToExtract
Diffstat (limited to 'src/Collections.ml')
-rw-r--r--src/Collections.ml8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Collections.ml b/src/Collections.ml
index 80345e14..bb7c37f1 100644
--- a/src/Collections.ml
+++ b/src/Collections.ml
@@ -193,7 +193,7 @@ end
identifiers to names (i.e., strings) when generating code, in order to
make sure that we don't have potentially dangerous collisions.
*)
-module type MapInj = sig
+module type InjMap = sig
type key
type elem
@@ -271,9 +271,9 @@ module type MapInj = sig
val of_list : (key * elem) list -> t
end
-(** See [MapInj] *)
-module MakeMapInj (Key : OrderedType) (Elem : OrderedType) :
- MapInj with type key = Key.t with type elem = Elem.t = struct
+(** See [InjMap] *)
+module MakeInjMap (Key : OrderedType) (Elem : OrderedType) :
+ InjMap with type key = Key.t with type elem = Elem.t = struct
module Map = MakeMap (Key)
module Set = MakeSet (Elem)