From 70adb6a50258daa2e3c4f5c65cbc0a78c032c39c Mon Sep 17 00:00:00 2001 From: gus-massa Date: Fri, 19 Aug 2016 09:33:45 -0300 Subject: [PATCH] =?UTF-8?q?Fix=20typo=20in=20string-ci=3D=3F=20docs=20(#14?= =?UTF-8?q?24)?= After case-folding the strings, they are compared with equal? instead of eqv? --- pkgs/racket-doc/scribblings/reference/strings.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/racket-doc/scribblings/reference/strings.scrbl b/pkgs/racket-doc/scribblings/reference/strings.scrbl index 97427350e8..58d7ac5b5a 100644 --- a/pkgs/racket-doc/scribblings/reference/strings.scrbl +++ b/pkgs/racket-doc/scribblings/reference/strings.scrbl @@ -233,7 +233,7 @@ _i)] is the character produced by @racket[(proc _i)]. @defproc[(string-ci=? [str1 string?] [str2 string?] ...+) boolean?]{ - Returns @racket[#t] if all of the arguments are @racket[eqv?] after + Returns @racket[#t] if all of the arguments are @racket[equal?] after locale-insensitive case-folding via @racket[string-foldcase]. @mz-examples[(string-ci=? "Apple" "apple")