string functions take at least two arguments

svn: r12167
This commit is contained in:
Matthias Felleisen 2008-10-29 15:13:17 +00:00
parent 866260c601
commit e9ca169869

View File

@ -374,35 +374,35 @@
(string-append (string ... -> string)
"to juxtapose the characters of several strings")
(string=? (string string ... -> boolean)
(string=? (string string string ... -> boolean)
"to compare two strings character-wise")
(string<? (string string ... -> boolean)
(string<? (string string string ... -> boolean)
"to determine whether one string alphabetically"
" precedes another")
(string>? (string string ... -> boolean)
(string>? (string string string ... -> boolean)
"to determine whether one string alphabetically"
" succeeds another")
(string<=? (string string ... -> boolean)
(string<=? (string string string ... -> boolean)
"to determine whether one string alphabetically"
" precedes another (or is equal to it)")
(string>=? (string string ... -> boolean)
(string>=? (string string string ... -> boolean)
"to determine whether one string alphabetically"
" succeeds another (or is equal to it)")
(string-ci=? (string string ... -> boolean)
(string-ci=? (string string string ... -> boolean)
"to compare two strings character-wise"
" in a case-insensitive manner")
(string-ci<? (string string ... -> boolean)
(string-ci<? (string string string ... -> boolean)
"to determine whether one string alphabetically"
" precedes another in a case-insensitive manner")
(string-ci>? (string string ... -> boolean)
(string-ci>? (string string string ... -> boolean)
"to determine whether one string alphabetically"
" succeeds another in a case-insensitive manner")
(string-ci<=? (string string ... -> boolean)
(string-ci<=? (string string string ... -> boolean)
"to determine whether one string alphabetically"
" precedes another (or is equal to it)"
" in a case-insensitive manner")
(string-ci>=? (string string ... -> boolean)
(string-ci>=? (string string string ... -> boolean)
"to determine whether one string alphabetically"
" succeeds another (or is equal to it)"
" in a case-insensitive manner")