aboutsummaryrefslogtreecommitdiffhomepage
path: root/proofs/proof_global.mli
diff options
context:
space:
mode:
authorGravatar Arnaud Spiwack <arnaud@spiwack.net>2013-11-27 18:56:22 +0100
committerGravatar Arnaud Spiwack <arnaud@spiwack.net>2013-12-04 14:14:33 +0100
commit6d08c015517b59e68507d2caf72a11734293d613 (patch)
tree164ccaddf3c9896bc540660357f1a4dbe7d47f55 /proofs/proof_global.mli
parentf1a2c15b7a7d7edfd4b4b379ed0bde8b1f5deb7b (diff)
Proof_global: fix start_proof comment after the preceding commits.
Diffstat (limited to 'proofs/proof_global.mli')
-rw-r--r--proofs/proof_global.mli11
1 files changed, 6 insertions, 5 deletions
diff --git a/proofs/proof_global.mli b/proofs/proof_global.mli
index ed7668d57..0000fe974 100644
--- a/proofs/proof_global.mli
+++ b/proofs/proof_global.mli
@@ -64,11 +64,12 @@ type proof_terminator =
proof_ending -> unit
type closed_proof = proof_object*proof_terminator Ephemeron.key
-(** [start_proof s str goals ~init_tac ~compute_guard hook] starts
- a proof of name [s] and
- conclusion [t]; [hook] is optionally a function to be applied at
- proof end (e.g. to declare the built constructions as a coercion
- or a setoid morphism). *)
+(** [start_proof id str goals terminator] starts a proof of name [id]
+ with goals [goals] (a list of pairs of environment and
+ conclusion); [str] describes what kind of theorem/definition this
+ is (spiwack: for potential printing, I believe is used only by
+ closing commands and the xml plugin); [terminator] is used at the
+ end of the proof to close the proof. *)
val start_proof : Names.Id.t ->
Decl_kinds.goal_kind ->
(Environ.env * Term.types) list ->