From 4833f9d839e1607d14f2547b13bc98b47f37e59a Mon Sep 17 00:00:00 2001 From: Matthias Felleisen Date: Wed, 26 Dec 2012 19:31:10 -0500 Subject: [PATCH] added a function for parsing contest files more easily, fix doc typo --- collects/2htdp/batch-io.rkt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/2htdp/batch-io.rkt b/collects/2htdp/batch-io.rkt index 9cf97144a4..d80d4df9cb 100644 --- a/collects/2htdp/batch-io.rkt +++ b/collects/2htdp/batch-io.rkt @@ -35,8 +35,8 @@ read-words/line ;; String -> [Listof [Listof String]] ;; read the specified file as a list of lines, each line as a list of words - read-words-and-numbers/line ;; String -> [Listof [Listof String]] - ;; read the specified file as a list of lines, each line as a list of words + read-words-and-numbers/line ;; String -> [Listof [Listof (Union Number String)]] + ;; read the specified file as a list of lines, each line as a list of words and numbers read-csv-file ;; String -> [Listof [Listof (U Any)]] ;; -- f must be formated as a a file with comma-separated values (Any)