From c54d42f18ca3396fe559a08f6316a7f789b947c5 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Wed, 11 Feb 2026 09:25:28 -0500 Subject: [PATCH] format --- src/core/ezcurl_core.ml | 6 +++++- src/core/ezcurl_core.mli | 5 ++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src/core/ezcurl_core.ml b/src/core/ezcurl_core.ml index 53fb3a1..82ee8f6 100644 --- a/src/core/ezcurl_core.ml +++ b/src/core/ezcurl_core.ml @@ -68,7 +68,11 @@ module Config = struct let to_string s = Format.asprintf "%a" pp s end -type t = { curl: Curl.t; set_opts : Curl.t -> unit } +type t = { + curl: Curl.t; + set_opts: Curl.t -> unit; +} + type client = t let _top_mutex = Mutex.create () diff --git a/src/core/ezcurl_core.mli b/src/core/ezcurl_core.mli index 8ed26ab..b3f076b 100644 --- a/src/core/ezcurl_core.mli +++ b/src/core/ezcurl_core.mli @@ -15,7 +15,10 @@ module Config : sig val to_string : t -> string end -type t = { curl: Curl.t; set_opts : Curl.t -> unit } +type t = { + curl: Curl.t; + set_opts: Curl.t -> unit; +} (** A client, i.e. a cURL instance. The wrapping record has been present since 0.3 *)