Skip to content

Commit

Permalink
style: simplify the wrapper signature
Browse files Browse the repository at this point in the history
  • Loading branch information
favonia committed Oct 31, 2023
1 parent 6105a4b commit 67fe61b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/Algaeff.mli
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@

(** {1 Reusable components} *)

module State : module type of State
module State = State

module Reader : module type of Reader
module Reader = Reader

module Sequencer : module type of Sequencer
module Sequencer = Sequencer

module Mutex : module type of Mutex
module Mutex = Mutex

module UniqueID : module type of UniqueID
module UniqueID = UniqueID

module Unmonad : module type of Unmonad
module Unmonad = Unmonad

(** {1 Auxiliary tools} *)

module Fun : module type of Fun
module Fun = Fun

0 comments on commit 67fe61b

Please sign in to comment.