mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-09 13:30:26 +02:00
docstring in rdelim
* module/ice-9/rdelim.scm: Update docstring.
This commit is contained in:
parent
5745de9172
commit
7ca5500ff3
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue