diff options
author | Maxence Guesdon <maxence.guesdon@inria.fr> | 2003-11-24 21:20:51 +0000 |
---|---|---|
committer | Maxence Guesdon <maxence.guesdon@inria.fr> | 2003-11-24 21:20:51 +0000 |
commit | 05b2a15d5c4b87d1fa60587518f7860f3080cf47 (patch) | |
tree | 9695446f773f0520c64b8e0434a2287ad3ddd5c5 /ocamldoc/odoc_text.mli | |
parent | 0d5a86e5204266235d183963156bcbfdc22618df (diff) |
OK - fixes: some bugs in the text parser
( ]} meaning end of code and somehting else instead of end of precode)
OK - add: in Odoc_info: text_of_string, text_string_of_text, info_of_string
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@5974 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'ocamldoc/odoc_text.mli')
-rw-r--r-- | ocamldoc/odoc_text.mli | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ocamldoc/odoc_text.mli b/ocamldoc/odoc_text.mli index 6ed5bd0e4..bc121791d 100644 --- a/ocamldoc/odoc_text.mli +++ b/ocamldoc/odoc_text.mli @@ -18,4 +18,7 @@ exception Text_syntax of int * int * string (* line, char, string *) (** Transformation of strings to text structures. *) module Texter : - sig val text_of_string : string -> Odoc_types.text end + sig + val text_of_string : string -> Odoc_types.text + val string_of_text : Odoc_types.text -> string + end |