aboutsummaryrefslogtreecommitdiff
path: root/doc/RefMan-gal.tex
diff options
context:
space:
mode:
authormarche2003-12-16 16:07:54 +0000
committermarche2003-12-16 16:07:54 +0000
commita3281b10a5ec5721eac591ef5cfe273238d2e377 (patch)
treeb4d53b4c5a649ba9358543d435a7719ab0da50de /doc/RefMan-gal.tex
parent6942f889bfe68b308744a01cc079403e872b4925 (diff)
coqide menus on golas
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@8403 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'doc/RefMan-gal.tex')
-rw-r--r--doc/RefMan-gal.tex3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/RefMan-gal.tex b/doc/RefMan-gal.tex
index cf918484dd..9d284fa548 100644
--- a/doc/RefMan-gal.tex
+++ b/doc/RefMan-gal.tex
@@ -1091,7 +1091,8 @@ Fixpoint plus (n m:nat) {struct m} : nat :=
The ordinary match operation on natural numbers can be mimicked in the
following way.
\begin{coq_example*}
-Fixpoint nat_match (C:Set) (f0:C) (fS:nat -> C -> C) (n:nat) {struct n} : C :=
+Fixpoint nat_match
+ (C:Set) (f0:C) (fS:nat -> C -> C) (n:nat) {struct n} : C :=
match n with
| O => f0
| S p => fS p (nat_match C f0 fS p)