aboutsummaryrefslogtreecommitdiff
path: root/pretyping/evarconv.ml
diff options
context:
space:
mode:
authorMaxime Dénès2018-12-12 09:57:09 +0100
committerMaxime Dénès2018-12-12 09:57:09 +0100
commitd87c4c472478fbcb30de6efabc68473ee36849a1 (patch)
tree5b4e1cb66298db57b978374422822ffdf2673100 /pretyping/evarconv.ml
parent850dfbf59f52b0d3dcba237ee2af5ce99fd1bcd2 (diff)
parentd00472c59d15259b486868c5ccdb50b6e602a548 (diff)
Merge PR #9150: [doc] Enable Warning 50 [incorrect doc comment] and fix comments.
Diffstat (limited to 'pretyping/evarconv.ml')
-rw-r--r--pretyping/evarconv.ml8
1 files changed, 4 insertions, 4 deletions
diff --git a/pretyping/evarconv.ml b/pretyping/evarconv.ml
index 6c268de3b3..e6e1530e36 100644
--- a/pretyping/evarconv.ml
+++ b/pretyping/evarconv.ml
@@ -1311,10 +1311,10 @@ let max_undefined_with_candidates evd =
| None -> ()
| Some l -> raise (MaxUndefined (evk, evi, l))
in
- (** [fold_right] traverses the undefined map in decreasing order of indices.
- The evar with candidates of maximum index is thus the first evar with
- candidates found by a [fold_right] traversal. This has a significant impact on
- performance. *)
+ (* [fold_right] traverses the undefined map in decreasing order of
+ indices. The evar with candidates of maximum index is thus the
+ first evar with candidates found by a [fold_right]
+ traversal. This has a significant impact on performance. *)
try
let () = Evar.Map.fold_right fold (Evd.undefined_map evd) () in
None