aboutsummaryrefslogtreecommitdiffhomepage
path: root/proofs/refine.mli
diff options
context:
space:
mode:
authorGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2017-05-09 10:03:37 +0200
committerGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2017-06-13 10:32:32 +0200
commit22ca6b0d70bb8b49aaa420f844c75592e5781c21 (patch)
tree865c0332b3a52a1af6ae9ebc26a2e5eb07518de6 /proofs/refine.mli
parent6332f43dfee3efc890c5f8fdc1b5b54942c16307 (diff)
Turn the default behaviour of the refine primitive into the safe one.
Diffstat (limited to 'proofs/refine.mli')
-rw-r--r--proofs/refine.mli2
1 files changed, 1 insertions, 1 deletions
diff --git a/proofs/refine.mli b/proofs/refine.mli
index f1439f9a1..cede9d458 100644
--- a/proofs/refine.mli
+++ b/proofs/refine.mli
@@ -27,7 +27,7 @@ val refine : ?unsafe:bool -> (Evd.evar_map -> Evd.evar_map * EConstr.t) -> unit
for the current goal (refine is a goal-dependent tactic), the
new holes created by [t] become the new subgoals. Exceptions
raised during the interpretation of [t] are caught and result in
- tactic failures. If [unsafe] is [false] (default is [true]) [t] is
+ tactic failures. If [unsafe] is [false] (which is the default) [t] is
type-checked beforehand. *)
val refine_one : ?unsafe:bool -> (Evd.evar_map -> Evd.evar_map * ('a * EConstr.t)) -> 'a tactic