Skip to content

Commit

Permalink
fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcqd committed Sep 20, 2023
1 parent a246a8e commit c1f59d5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Reader.ml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ sig
val read : unit -> env
val scope : (env -> env) -> (unit -> 'a) -> 'a
val run : env:env -> (unit -> 'a) -> 'a
val register_printer : ([`Read] -> string option) -> unit
end

module Make (P : Param) =
Expand Down
1 change: 1 addition & 0 deletions src/Sequencer.ml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ sig

val yield : elt -> unit
val run : (unit -> unit) -> elt Seq.t
val register_printer : ([`Yield of elt] -> string option) -> unit
end

module Make (P : Param) =
Expand Down
1 change: 1 addition & 0 deletions src/State.ml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ sig
val set : state -> unit
val modify : (state -> state) -> unit
val run : init:state -> (unit -> 'a) -> 'a
val register_printer : ([`Get | `Set of state] -> string option) -> unit
end

module Make (P : Param) =
Expand Down
1 change: 1 addition & 0 deletions src/UniqueID.ml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ sig
val retrieve : id -> elt
val export : unit -> elt Seq.t
val run : ?init:elt Seq.t -> (unit -> 'a) -> 'a
val register_printer : ([`Register of elt | `Retrieve of id | `Export] -> string option) -> unit
end

module Make (P : Param) =
Expand Down

0 comments on commit c1f59d5

Please sign in to comment.