aboutsummaryrefslogtreecommitdiffhomepage
path: root/dev/top_printers.ml
diff options
context:
space:
mode:
Diffstat (limited to 'dev/top_printers.ml')
-rw-r--r--dev/top_printers.ml3
1 files changed, 1 insertions, 2 deletions
diff --git a/dev/top_printers.ml b/dev/top_printers.ml
index 9d6b4886b..6d90af997 100644
--- a/dev/top_printers.ml
+++ b/dev/top_printers.ml
@@ -366,8 +366,7 @@ let rec pr_argument_type = function
| ConstrWithBindingsArgType -> str"constr-with-bindings"
| BindingsArgType -> str"bindings"
| RedExprArgType -> str"redexp"
- | List0ArgType t -> pr_argument_type t ++ str" list0"
- | List1ArgType t -> pr_argument_type t ++ str" list1"
+ | ListArgType t -> pr_argument_type t ++ str" list"
| OptArgType t -> pr_argument_type t ++ str" opt"
| PairArgType (t1,t2) ->
str"("++ pr_argument_type t1 ++ str"*" ++ pr_argument_type t2 ++str")"