Added META file.
[ocaml-csv.git] / csv.mli
diff --git a/csv.mli b/csv.mli
index 14901e4..c04ad12 100644 (file)
--- a/csv.mli
+++ b/csv.mli
@@ -1,6 +1,6 @@
 (** csv.mli - comma separated values parser
   *
-  * $Id: csv.mli,v 1.10 2006-11-24 15:49:24 rich Exp $
+  * $Id: csv.mli,v 1.11 2007-04-23 16:42:33 rich Exp $
   *)
 
 type t = string list list
@@ -34,10 +34,6 @@ val load_rows : ?separator:char -> (string list -> unit) -> in_channel -> unit
   * this function is appropriate. It parses the input one row at a time and
   * calls your function once for each row.
   *
-  * Note that if you CSV file contains cells which have embedded
-  * line feeds, then it is non-trivial to parse these lines and
-  * pass them correctly to [load_rows].
-  *
   * @param f Callout function.
   * @param chan Input file stream.
   *)