From 7ca5500ff303e16c77f473a42ece9cb20e3e3569 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Tue, 22 Jan 2013 15:39:37 +0100 Subject: [PATCH] docstring in rdelim * module/ice-9/rdelim.scm: Update docstring. --- module/ice-9/rdelim.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/ice-9/rdelim.scm b/module/ice-9/rdelim.scm index aace481f4..32908cc4a 100644 --- a/module/ice-9/rdelim.scm +++ b/module/ice-9/rdelim.scm @@ -150,8 +150,8 @@ left in the port." (define* (read-string #:optional (port (current-input-port)) (count #f)) "Read all of the characters out of PORT and return them as a string. -If the COUNT is present, treat it as a limit to the number of characters -to read. By default, there is no limit." +If the COUNT argument is present, treat it as a limit to the number of +characters to read. By default, there is no limit." (check-arg (or (not count) (index? count)) "bad count" count) (let loop ((substrings '()) (total-chars 0)