From 6f7ae8627d6e10bb9e5cc5e559e9bfec9bbde73d Mon Sep 17 00:00:00 2001 From: Egor Chemokhonenko Date: Fri, 29 Dec 2023 18:28:23 +0200 Subject: [PATCH] Fmt --- lib/generator.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/generator.ml b/lib/generator.ml index ee93f7c..01c6567 100644 --- a/lib/generator.ml +++ b/lib/generator.ml @@ -15,7 +15,7 @@ let process_int_type schema = | _ -> failwith "int has unextected format" let get_ref (ref : ref_) = - match ref |> String.split_on_char '/' |> List.rev with + match ref |> String.split_on_char '/' |> List.rev with | type_name :: _ -> type_name | _ -> failwith (Printf.sprintf "%s: can't resolve ref type name" ref)