aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/sphinx/language/coq-library.rst
diff options
context:
space:
mode:
authorGravatar Zeimer <zzaimer@gmail.com>2018-07-14 14:20:25 +0200
committerGravatar Zeimer <zzaimer@gmail.com>2018-07-19 15:48:37 +0200
commitbdf65b2516b0dd5f4e1a1c6130fc49ee7712dd07 (patch)
tree7ca4c2934943636f017dc1d90116723b4c4c515a /doc/sphinx/language/coq-library.rst
parentfc1da651e93c08b281dc224dbbd0284390240a47 (diff)
Fixed some typos and grammar errors from section 'The language' of the Reference Manual. Removed all mentions of prodT because it is no longer a separate inductive definition (prod has been living in Type for some time) but rather only a notation for prod needed for compatibility purposes.
Diffstat (limited to 'doc/sphinx/language/coq-library.rst')
-rw-r--r--doc/sphinx/language/coq-library.rst5
1 files changed, 1 insertions, 4 deletions
diff --git a/doc/sphinx/language/coq-library.rst b/doc/sphinx/language/coq-library.rst
index f23e04c3a..848b3891b 100644
--- a/doc/sphinx/language/coq-library.rst
+++ b/doc/sphinx/language/coq-library.rst
@@ -706,18 +706,15 @@ Accessing the Type level
~~~~~~~~~~~~~~~~~~~~~~~~
The basic library includes the definitions of the counterparts of some data-types and logical
-quantifiers at the ``Type``: level: negation, pair, and properties
+quantifiers at the ``Type``: level: negation and properties
of ``identity``. This is the module ``Logic_Type.v``.
.. index::
single: notT (term)
- single: prodT (term)
- single: pairT (term)
.. coqtop:: in
Definition notT (A:Type) := A -> False.
- Inductive prodT (A B:Type) : Type := pairT (_:A) (_:B).
At the end, it defines data-types at the ``Type`` level.