aboutsummaryrefslogtreecommitdiff
path: root/doc/sphinx/proof-engine
diff options
context:
space:
mode:
authorClément Pit-Claudel2019-11-20 11:38:59 -0500
committerClément Pit-Claudel2019-11-20 11:38:59 -0500
commit54d0af9683d2b9f7b76a47219507905a069b343b (patch)
treeeefe8716d17e333b4e111c1ac67ded5242ae888f /doc/sphinx/proof-engine
parentf37db0ff9b59720bb80433dff2995862550aec50 (diff)
parent6ffa4300ad8f693fd40c070e0d44b703325d375c (diff)
Merge PR #11119: 8.10-backportable part of #10575
Reviewed-by: cpitclaudel
Diffstat (limited to 'doc/sphinx/proof-engine')
-rw-r--r--doc/sphinx/proof-engine/tactics.rst10
1 files changed, 8 insertions, 2 deletions
diff --git a/doc/sphinx/proof-engine/tactics.rst b/doc/sphinx/proof-engine/tactics.rst
index ad7f9af0f9..62d4aa704f 100644
--- a/doc/sphinx/proof-engine/tactics.rst
+++ b/doc/sphinx/proof-engine/tactics.rst
@@ -4237,7 +4237,13 @@ some incompatibilities.
.. tacv:: firstorder using {+ @qualid}
- Adds lemmas :n:`{+ @qualid}` to the proof-search environment. If :n:`@qualid`
+ .. deprecated:: 8.3
+
+ Use the syntax below instead (with commas).
+
+.. tacv:: firstorder using {+, @qualid}
+
+ Adds lemmas :n:`{+, @qualid}` to the proof-search environment. If :n:`@qualid`
refers to an inductive type, it is the collection of its constructors which are
added to the proof-search environment.
@@ -4246,7 +4252,7 @@ some incompatibilities.
Adds lemmas from :tacn:`auto` hint bases :n:`{+ @ident}` to the proof-search
environment.
-.. tacv:: firstorder @tactic using {+ @qualid} with {+ @ident}
+.. tacv:: firstorder @tactic using {+, @qualid} with {+ @ident}
This combines the effects of the different variants of :tacn:`firstorder`.