aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/sphinx/proof-engine
diff options
context:
space:
mode:
authorGravatar Théo Winterhalter <isheeft@gmail.com>2018-05-31 10:58:39 +0200
committerGravatar Théo Winterhalter <isheeft@gmail.com>2018-05-31 10:58:39 +0200
commit1967ddb1fb4eb250b2bb10c9f8fbdc56fa954fe1 (patch)
tree04048656348d6786e7e8003fff52bf8113b32e2c /doc/sphinx/proof-engine
parent4598a26890a896ddcf6cd30758ae07882e245a16 (diff)
Indicate in the doc that clearbody can take several idents
Diffstat (limited to 'doc/sphinx/proof-engine')
-rw-r--r--doc/sphinx/proof-engine/tactics.rst20
1 files changed, 12 insertions, 8 deletions
diff --git a/doc/sphinx/proof-engine/tactics.rst b/doc/sphinx/proof-engine/tactics.rst
index da4c3f9d7..110e3253e 100644
--- a/doc/sphinx/proof-engine/tactics.rst
+++ b/doc/sphinx/proof-engine/tactics.rst
@@ -879,14 +879,6 @@ quantification or an implication.
This is equivalent to :n:`clear @ident. ... clear @ident.`
-.. tacv:: clearbody @ident
- :name: clearbody
-
- This tactic expects :n:`@ident` to be a local definition then clears its
- body. Otherwise said, this tactic turns a definition into an assumption.
-
-.. exn:: @ident is not a local definition.
-
.. tacv:: clear - {+ @ident}
This tactic clears all the hypotheses except the ones depending in the
@@ -901,6 +893,18 @@ quantification or an implication.
This clears the hypothesis :n:`@ident` and all the hypotheses that depend on
it.
+.. tacv:: clearbody @ident
+ :name: clearbody
+
+ This tactic expects :n:`@ident` to be a local definition then clears its
+ body. Otherwise said, this tactic turns a definition into an assumption.
+
+.. exn:: @ident is not a local definition.
+
+.. tacv:: clearbody {+ @ident}
+
+ This is equivalent to :n:`clearbody @ident. ... clearbody @ident.`
+
.. tacn:: revert {+ @ident}
:name: revert