Skip to content

Commit

Permalink
Tweak constructor order of imported Ordering - same as Base
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarbin committed Aug 5, 2024
1 parent 30939dd commit 64143b0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/import.ml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ end

module Ordering = struct
type t =
| Equal
| Less
| Equal
| Greater

let of_int i = if i < 0 then Less else if i = 0 then Equal else Greater
Expand Down
2 changes: 1 addition & 1 deletion src/import.mli
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ end

module Ordering : sig
type t =
| Equal
| Less
| Equal
| Greater

val of_int : int -> t
Expand Down
2 changes: 1 addition & 1 deletion src/provider.mli
Original file line number Diff line number Diff line change
Expand Up @@ -241,8 +241,8 @@ module Private : sig

module Ordering : sig
type t =
| Equal
| Less
| Equal
| Greater

val of_int : int -> t
Expand Down

0 comments on commit 64143b0

Please sign in to comment.