# HG changeset patch # User Adam Chlipala # Date 1316531285 14400 # Node ID 3513d8b0531a8ecd8fa5570c7edf677c755eebc2 # Parent 98e0d957df16f1447af1f0ac09aecf76abafd1dc thide parsing-motivating definitions at start of Predicates diff -r 98e0d957df16 -r 3513d8b0531a src/Predicates.v --- a/src/Predicates.v Mon Sep 19 14:04:09 2011 -0400 +++ b/src/Predicates.v Tue Sep 20 11:08:05 2011 -0400 @@ -16,6 +16,7 @@ (* Extra definitions to get coqdoc to choose the right fonts. *) +(* begin thide *) Inductive unit := tt. Inductive Empty_set := . Inductive bool := true | false. @@ -26,6 +27,7 @@ Inductive ex := ex_intro. Inductive eq := refl_equal. Reset unit. +(* end thide *) (* end hide *) (** %\chapter{Inductive Predicates}% *)