aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/store.mli
diff options
context:
space:
mode:
Diffstat (limited to 'lib/store.mli')
-rw-r--r--lib/store.mli7
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/store.mli b/lib/store.mli
index 8eab314ed..5cc5bb859 100644
--- a/lib/store.mli
+++ b/lib/store.mli
@@ -9,11 +9,6 @@
(*** This module implements an "untyped store", in this particular case we
see it as an extensible record whose fields are left unspecified. ***)
-module type T =
-sig
-(** FIXME: Waiting for first-class modules... *)
-end
-
module type S =
sig
type t
@@ -42,5 +37,5 @@ sig
end
-module Make (M : T) : S
+module Make () : S
(** Create a new store type. *)