aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/tutorial/Tutorial.tex
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-04-17 18:33:16 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-04-17 18:33:16 +0000
commit9b24b6d763bb2c7975cd2b93364d7647fd660598 (patch)
treebc4733a59179e67274c9c82ac18db28b2e9d4a23 /doc/tutorial/Tutorial.tex
parent248e7beca97c073d0f5a2f937d77f2c4d8c805df (diff)
Renaming SearchAbout into Search and Search into SearchHead.
I hope I did not forget any place to change. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16423 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'doc/tutorial/Tutorial.tex')
-rwxr-xr-xdoc/tutorial/Tutorial.tex8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/tutorial/Tutorial.tex b/doc/tutorial/Tutorial.tex
index 43c8bf620..5907edb61 100755
--- a/doc/tutorial/Tutorial.tex
+++ b/doc/tutorial/Tutorial.tex
@@ -1539,17 +1539,17 @@ you should use \verb:Require Export M: in your module \verb:N:.
It is often difficult to remember the names of all lemmas and
definitions available in the current context, especially if large
-libraries have been loaded. A convenient \verb:SearchAbout: command
+libraries have been loaded. A convenient \verb:Search: command
is available to lookup all known facts
concerning a given predicate. For instance, if you want to know all the
known lemmas about the less or equal relation, just ask:
\begin{coq_example}
-SearchAbout le.
+Search le.
\end{coq_example}
-Another command \verb:Search: displays only lemmas where the searched
+Another command \verb:SearchHead: displays only lemmas where the searched
predicate appears at the head position in the conclusion.
\begin{coq_example}
-Search le.
+SearchHead le.
\end{coq_example}
A new and more convenient search tool is \textsf{SearchPattern}