mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-08 05:27:35 +02:00
Typo in string-upcase-ascii.
This commit is contained in:
parent
56b3116e20
commit
b007c25050
1 changed files with 1 additions and 1 deletions
|
@ -188,4 +188,4 @@
|
||||||
(define (string-upcase-ascii s)
|
(define (string-upcase-ascii s)
|
||||||
(call-with-output-string
|
(call-with-output-string
|
||||||
(lambda (out)
|
(lambda (out)
|
||||||
(string-for-each (lambda (ch) (write-char (char-downcase ch) out)) s))))
|
(string-for-each (lambda (ch) (write-char (char-upcase ch) out)) s))))
|
||||||
|
|
Loading…
Add table
Reference in a new issue