Fix linting errors

master
Leandro Ostera 2020-11-06 09:20:10 +01:00
parent 1b085d3840
commit b91a90a4a7
No known key found for this signature in database
GPG Key ID: 164AFF20E1035D1F
3 changed files with 6 additions and 3 deletions

View File

@ -74,7 +74,8 @@ val typecheck_impl : info -> Parsetree.structure -> Typedtree.implementation
coercion against that public interface.
*)
val implementation : info -> backend:(info -> Typedtree.implementation -> unit) -> unit
val implementation :
info -> backend:(info -> Typedtree.implementation -> unit) -> unit
(** The complete compilation pipeline for implementations. *)
(** {2 Build artifacts} *)

View File

@ -942,4 +942,5 @@ let interface ppf x = list 0 signature_item ppf x.sig_items;;
let implementation ppf x = list 0 structure_item ppf x.str_items;;
let implementation_with_coercion ppf Typedtree.{structure; _} = implementation ppf structure
let implementation_with_coercion ppf Typedtree.{structure; _} =
implementation ppf structure

View File

@ -19,4 +19,5 @@ open Format;;
val interface : formatter -> signature -> unit;;
val implementation : formatter -> structure -> unit;;
val implementation_with_coercion : formatter -> Typedtree.implementation -> unit;;
val implementation_with_coercion :
formatter -> Typedtree.implementation -> unit;;