From 55d088f0d49a32f7ddc88279b3ec7a84cc6b0556 Mon Sep 17 00:00:00 2001 From: Sebastian Provenzano Date: Thu, 14 Nov 2024 19:35:38 -0600 Subject: [PATCH] format --- src/core/CCResult.ml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/core/CCResult.ml b/src/core/CCResult.ml index 2a99f726..14437120 100644 --- a/src/core/CCResult.ml +++ b/src/core/CCResult.ml @@ -170,7 +170,9 @@ let is_error = function let split_ok_error results = results |> CCList.partition_filter_map (fun x -> - match x with Ok o -> `Left o | Error e -> `Right e) + match x with + | Ok o -> `Left o + | Error e -> `Right e) (** {2 Wrappers} *)