aboutsummaryrefslogtreecommitdiff
path: root/proofs/proofview.mli
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2015-10-19 22:52:36 +0200
committerPierre-Marie Pédrot2015-10-20 13:04:00 +0200
commitf5d8d305c34f9bab21436c765aeeb56a65005dfe (patch)
tree7271ad90ee24db93003af945bdaea73ef1aa6787 /proofs/proofview.mli
parenta104cd04f3d245bb45e6ff1db8b4ac10c51f4123 (diff)
Renaming Goal.enter field into s_enter.
Diffstat (limited to 'proofs/proofview.mli')
-rw-r--r--proofs/proofview.mli12
1 files changed, 6 insertions, 6 deletions
diff --git a/proofs/proofview.mli b/proofs/proofview.mli
index b565589eb7..a94610af47 100644
--- a/proofs/proofview.mli
+++ b/proofs/proofview.mli
@@ -454,16 +454,16 @@ module Goal : sig
(** Like {!nf_enter}, but does not normalize the goal beforehand. *)
val enter : ([ `LZ ] t -> unit tactic) -> unit tactic
- type 'a enter =
- { enter : 'r. 'a t -> 'r Sigma.t -> (unit tactic, 'r) Sigma.sigma }
+ type 'a s_enter =
+ { s_enter : 'r. 'a t -> 'r Sigma.t -> (unit tactic, 'r) Sigma.sigma }
(** A variant of {!enter} allows to work with a monotonic state. The evarmap
returned by the argument is put back into the current state before firing
the returned tactic. *)
- val s_enter : [ `LZ ] enter -> unit tactic
+ val s_enter : [ `LZ ] s_enter -> unit tactic
(** Like {!s_enter}, but normalizes the goal beforehand. *)
- val nf_s_enter : [ `NF ] enter -> unit tactic
+ val nf_s_enter : [ `NF ] s_enter -> unit tactic
(** Recover the list of current goals under focus, without evar-normalization *)
val goals : [ `LZ ] t tactic list tactic
@@ -592,6 +592,6 @@ module Notations : sig
(** {!tclOR}: [t1+t2] = [tclOR t1 (fun _ -> t2)]. *)
val (<+>) : 'a tactic -> 'a tactic -> 'a tactic
- type 'a enter = 'a Goal.enter =
- { enter : 'r. 'a Goal.t -> 'r Sigma.t -> (unit tactic, 'r) Sigma.sigma }
+ type 'a s_enter = 'a Goal.s_enter =
+ { s_enter : 'r. 'a Goal.t -> 'r Sigma.t -> (unit tactic, 'r) Sigma.sigma }
end