aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Bool/Sumbool.v
diff options
context:
space:
mode:
authorGravatar filliatr <filliatr@85f007b7-540e-0410-9357-904b9bb8a0f7>2002-02-14 14:39:07 +0000
committerGravatar filliatr <filliatr@85f007b7-540e-0410-9357-904b9bb8a0f7>2002-02-14 14:39:07 +0000
commit67f72c93f5f364591224a86c52727867e02a8f71 (patch)
treeecf630daf8346e77e6620233d8f3e6c18a0c9b3c /theories/Bool/Sumbool.v
parentb239b208eb9a66037b0c629cf7ccb6e4b110636a (diff)
option -dump-glob pour coqdoc
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@2474 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Bool/Sumbool.v')
-rw-r--r--theories/Bool/Sumbool.v13
1 files changed, 6 insertions, 7 deletions
diff --git a/theories/Bool/Sumbool.v b/theories/Bool/Sumbool.v
index 275712084..44311a127 100644
--- a/theories/Bool/Sumbool.v
+++ b/theories/Bool/Sumbool.v
@@ -8,13 +8,12 @@
(*i $Id$ i*)
-(* Here are collected some results about the type sumbool (see INIT/Specif.v)
- * [sumbool A B], which is written [{A}+{B}], is the informative
- * disjunction "A or B", where A and B are logical propositions.
- * Its extraction is isomorphic to the type of booleans.
- *)
+(** Here are collected some results about the type sumbool (see INIT/Specif.v)
+ [sumbool A B], which is written [{A}+{B}], is the informative
+ disjunction "A or B", where A and B are logical propositions.
+ Its extraction is isomorphic to the type of booleans. *)
-(* A boolean is either true or false, and this is decidable *)
+(** A boolean is either [true] or [false], and this is decidable *)
Lemma sumbool_of_bool : (b:bool) {b=true}+{b=false}.
Proof.
@@ -36,7 +35,7 @@ Save.
(*i pourquoi ce machin-la est dans BOOL et pas dans LOGIC ? Papageno i*)
-(* Logic connectives on type sumbool *)
+(** Logic connectives on type [sumbool] *)
Section connectives.