Skip to content

Commit

Permalink
Update ocamlformat to 0.26.2
Browse files Browse the repository at this point in the history
  • Loading branch information
art-w committed Sep 19, 2024
1 parent 3de16f3 commit f1c8dc7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .ocamlformat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 0.26.0
version = 0.26.2
profile = conventional

ocaml-version = 4.08.0
Expand Down
3 changes: 2 additions & 1 deletion src/irmin-git/irmin_git.ml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ module Content_addressable (G : Git.S) = struct
let v ?dotgit:_ _root = assert false
end

module type S = Irmin.Content_addressable.S with type _ t = G.t and type key = G.Hash.t
module type S =
Irmin.Content_addressable.S with type _ t = G.t and type key = G.Hash.t

module Maker = Maker_ext (G) (No_sync)

Expand Down
3 changes: 2 additions & 1 deletion src/irmin-git/irmin_git_intf.ml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@ module type Sigs = sig
(** Use Git as a content-addressable store. Values will be stored into
[.git/objects].*)

module type S = Irmin.Content_addressable.S with type _ t = G.t and type key = G.Hash.t
module type S =
Irmin.Content_addressable.S with type _ t = G.t and type key = G.Hash.t

module Make (V : Irmin.Type.S) : S with type value = V.t
end
Expand Down

0 comments on commit f1c8dc7

Please sign in to comment.