aboutsummaryrefslogtreecommitdiffhomepage
path: root/contrib/extraction/ocaml.ml
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/extraction/ocaml.ml')
-rw-r--r--contrib/extraction/ocaml.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/extraction/ocaml.ml b/contrib/extraction/ocaml.ml
index 57a198d13..4bd05b03f 100644
--- a/contrib/extraction/ocaml.ml
+++ b/contrib/extraction/ocaml.ml
@@ -251,13 +251,13 @@ let rec pp_expr par env args =
let ids',env' = push_vars (List.rev (Array.to_list ids)) env in
pp_fix par env' (Some i) (Array.of_list (List.rev ids'),defs) args
| MLexn s ->
- (* an [MLexn] may be applied, but I don't really care *)
+ (* An [MLexn] may be applied, but I don't really care. *)
(open_par par ++ str "assert false" ++ spc () ++
str ("(* "^s^" *)") ++ close_par par)
| MLprop ->
- assert (args=[]); str "prop"
+ str "prop" (* An [MLprop] may be applied, but I don't really care. *)
| MLarity ->
- assert (args=[]); str "arity"
+ str "arity" (* idem for [MLarity]. *)
| MLcast (a,t) ->
let tvars = get_tvars t in
let _,ren = rename_tvars keywords tvars in