Update of /cvsroot/q-lang/q-csv
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv22873
Modified Files:
csv.q
Log Message:
typo fixes
Index: csv.q
===================================================================
RCS file: /cvsroot/q-lang/q-csv/csv.q,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** csv.q 13 Jan 2008 17:27:14 -0000 1.5
--- csv.q 13 Jan 2008 21:31:11 -0000 1.6
***************
*** 26,35 ****
STRDELIM: string delimiter used in the CSV format
! NOTE: fread_csvstr does not take into account badly formated records.
csvstr_to_tuple is necessary for error checking.
*/
public extern tuple_to_csvstr ARGS REC;
! /* Convert a tuple (record) to CSV string
ARGS: tuple (auto conversion flag, field delimiter, string delimiter)
REC: tuple of fields to be converted to CSV format
--- 26,35 ----
STRDELIM: string delimiter used in the CSV format
! NOTE: fread_csvstr does not take into account badly formatted records.
csvstr_to_tuple is necessary for error checking.
*/
public extern tuple_to_csvstr ARGS REC;
! /* Convert a tuple (record) to a CSV string
ARGS: tuple (auto conversion flag, field delimiter, string delimiter)
REC: tuple of fields to be converted to CSV format
***************
*** 47,53 ****
NOTES
! (1) A properly formated CSV string MUST end with a '\n'
! (2) When the auto conversion flag is false, All fields are strings.
! (3) The 'csv_error MSG' rule is invoked on improperly formated strings.
*/
--- 47,53 ----
NOTES
! (1) A properly formated CSV string MUST end with a '\n'.
! (2) When the auto conversion flag is false, all fields are strings.
! (3) The 'csv_error MSG' rule is invoked on improperly formatted strings.
*/
***************
*** 105,109 ****
public fwritecsvfile_data FILE LIST, fwritefile_string ARGS;
! /* Write a list of tuples to a CSV formated file. */
fwritecsvfile_data F:File L:List
--- 105,109 ----
public fwritecsvfile_data FILE LIST, fwritefile_string ARGS;
! /* Write a list of tuples to a CSV formatted file. */
fwritecsvfile_data F:File L:List
|