aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/Makefile3
-rw-r--r--kernel/inductive.mli4
-rw-r--r--kernel/term.mli2
3 files changed, 5 insertions, 4 deletions
diff --git a/doc/Makefile b/doc/Makefile
index 2ba39b97d0..487da84e4b 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -4,7 +4,8 @@
all: minicoq.dvi
coq.dvi: coq.tex
- latex coq && latex coq
+ latex coq
+ latex coq
coq.tex::
make -C .. doc/coq.tex
diff --git a/kernel/inductive.mli b/kernel/inductive.mli
index 936c9093ae..33f85d800b 100644
--- a/kernel/inductive.mli
+++ b/kernel/inductive.mli
@@ -20,12 +20,12 @@ corresponds to a [mutual_inductive_instance =
mutual_inductive_body * constr list]. One inductive type in an
instanciated packet corresponds to an [inductive_instance =
mutual_inductive_instance * int]. Applying global parameters to an
-inductive_instance gives an [inductive_family = inductive_instance *
+[inductive_instance] gives an [inductive_family = inductive_instance *
constr list]. Finally, applying real parameters gives an
[inductive_type = inductive_family * constr list]. At each level
corresponds various appropriated functions *)
-type inductive_instance (* ex-mind_specif *)
+type inductive_instance (* ex-[mind_specif] *)
val mis_index : inductive_instance -> int
val mis_ntypes : inductive_instance -> int
diff --git a/kernel/term.mli b/kernel/term.mli
index 787f51c63b..69bd7d644f 100644
--- a/kernel/term.mli
+++ b/kernel/term.mli
@@ -548,7 +548,7 @@ val occur_evar : existential_key -> constr -> bool
in c, [false] otherwise *)
val occur_var : identifier -> 'a term -> bool
-(* [dependent M N] is true iff M is eq_constr with a subterm of N
+(* [dependent M N] is true iff M is eq\_constr with a subterm of N
M is appropriately lifted through abstractions of N *)
val dependent : constr -> constr -> bool