Skip to content
This repository was archived by the owner on Jun 15, 2023. It is now read-only.

Commit cf31d9b

Browse files
glennslcristianoc
authored andcommitted
outcome-printer: fix module type substitutions
1 parent b8b78ae commit cf31d9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/res_outcome_printer.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ let printPolyVarIdent txt =
350350
let i = ref 0 in
351351
let package = Doc.join ~sep:Doc.line ((List.map2 [@doesNotRaise]) (fun lbl typ ->
352352
Doc.concat [
353-
Doc.text (if i.contents > 0 then "and " else "with ");
353+
Doc.text (if i.contents > 0 then "and type " else "with type ");
354354
Doc.text lbl;
355355
Doc.text " = ";
356356
printOutTypeDoc typ;

0 commit comments

Comments
 (0)