A batteries included HTTP/1.1 client in OCaml

fix(lint): add Error.pp, rename create_ept_ioctl (E331/E415)

Add pp pretty-printer for Error.t. Rename create_ept_ioctl to
ept_ioctl in rpmsg. Skip find_rel rename as it collides with the
rel field accessor.

+4
+1
lib/core/error.ml
··· 374 374 375 375 (** {1 String Conversion} *) 376 376 377 + let pp = pp_error 377 378 let to_string e = Fmt.str "%a" pp_error e 378 379 379 380 (** {1 Convenience Constructors}
+3
lib/core/error.mli
··· 204 204 205 205 (** {1 String Conversion} *) 206 206 207 + val pp : Format.formatter -> t -> unit 208 + (** [pp ppf e] pretty-prints the error. *) 209 + 207 210 val to_string : t -> string 208 211 (** Convert error to human-readable string. *) 209 212