diff -r 396d4d6a1594 -r 555b56b66fcf doc-src/Codegen/Thy/document/Introduction.tex --- a/doc-src/Codegen/Thy/document/Introduction.tex Wed May 06 16:01:06 2009 +0200 +++ b/doc-src/Codegen/Thy/document/Introduction.tex Wed May 06 16:01:07 2009 +0200 @@ -46,8 +46,8 @@ This manifests in the structure of this tutorial: after a short conceptual introduction with an example (\secref{sec:intro}), we discuss the generic customisation facilities (\secref{sec:program}). - A further section (\secref{sec:adaption}) is dedicated to the matter of - \qn{adaption} to specific target language environments. After some + A further section (\secref{sec:adaptation}) is dedicated to the matter of + \qn{adaptation} to specific target language environments. After some further issues (\secref{sec:further}) we conclude with an overview of some ML programming interfaces (\secref{sec:ml}). @@ -229,7 +229,7 @@ \hspace*{0pt}module Example where {\char123}\\ \hspace*{0pt}\\ \hspace*{0pt}\\ -\hspace*{0pt}foldla ::~forall a b.~(a -> b -> a) -> a -> [b] -> a;\\ +\hspace*{0pt}foldla ::~forall a{\char95}1 b{\char95}1.~(a{\char95}1 -> b{\char95}1 -> a{\char95}1) -> a{\char95}1 -> [b{\char95}1] -> a{\char95}1;\\ \hspace*{0pt}foldla f a [] = a;\\ \hspace*{0pt}foldla f a (x :~xs) = foldla f (f a x) xs;\\ \hspace*{0pt}\\