resolve some overfull hboxes

git-svn-id: http://caml.inria.fr/svn/ocamldoc/trunk@12771 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
master
Damien Doligez 2012-07-24 22:42:10 +00:00
parent 663ac23221
commit 8c7e8833eb
2 changed files with 10 additions and 4 deletions

View File

@ -1227,8 +1227,9 @@ To compile and link this program, run:
\begin{verbatim}
ocamlc -custom -o test unix.cma test.ml curses_stubs.o -cclib -lcurses
\end{verbatim}
(On some machines, you may need to put "-cclib -ltermcap" or
"-cclib -lcurses -cclib -ltermcap" instead of "-cclib -lcurses".)
(On some machines, you may need to put
"-cclib -lcurses -cclib -ltermcap" or "-cclib -ltermcap"
instead of "-cclib -lcurses".)
\section{Advanced topic: callbacks from C to OCaml} \label{s:callback}
\pdfsection{Advanced topic: callbacks from C to OCaml}

View File

@ -243,8 +243,13 @@ Generate only index files.
\item["-short-functors"]
Use a short form to display functors:
"module M : functor (A:Module) -> functor (B:Module2) -> sig .. end"
is displayed as "module M (A:Module) (B:Module2) : sig .. end".
\begin{alltt}
module M : functor (A:Module) -> functor (B:Module2) -> sig .. end
\end{alltt}
is displayed as:
\begin{alltt}
module M (A:Module) (B:Module2) : sig .. end
\end{alltt}
\end{options}