From 2fb73cbd7725ea627d8f697c534b98b944d604bb Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Fri, 14 May 2010 09:44:49 +0000 Subject: [PATCH] Typos. git-svn-id: http://caml.inria.fr/svn/ocamldoc/trunk@10398 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02 --- manual/manual/cmds/intf-c.etex | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/manual/manual/cmds/intf-c.etex b/manual/manual/cmds/intf-c.etex index e9a92a940..b48cf7511 100644 --- a/manual/manual/cmds/intf-c.etex +++ b/manual/manual/cmds/intf-c.etex @@ -542,11 +542,11 @@ The following artificial example illustrates the assignment of integers and block tags to constructors: \begin{verbatim} type t = - | A /* First constant constructor -> integer "Val_int(0)" */ - | B of string /* First non-constant constructor -> block with tag 0 */ - | C /* Second constant constructor -> integer "Val_int(1)" */ - | D of bool /* Second non-constant constructor -> block with tag 1 */ - | E of t * t /* Third non-constant constructor -> block with tag 2 */ + | A (* First constant constructor -> integer "Val_int(0)" *) + | B of string (* First non-constant constructor -> block with tag 0 *) + | C (* Second constant constructor -> integer "Val_int(1)" *) + | D of bool (* Second non-constant constructor -> block with tag 1 *) + | E of t * t (* Third non-constant constructor -> block with tag 2 *) \end{verbatim} \subsection{Objects}