Fixed typo in the docs for normal-case-path.

This commit is contained in:
Georges Dupéron 2015-08-07 13:41:46 +02:00
parent 7b70a42361
commit 464001351c

View File

@ -452,10 +452,10 @@ information on simplifying paths.}
Returns @racket[path] with ``normalized'' case letters. For @|AllUnix| Returns @racket[path] with ``normalized'' case letters. For @|AllUnix|
paths, this procedure always returns the input path, because paths, this procedure always returns the input path, because
filesystems for these platforms can be case-sensitive. For Windows filesystems for these platforms can be case-sensitive. For Windows
paths, if @racket[path] does not start @litchar{\\?\}, the paths, if @racket[path] does not start with @litchar{\\?\}, the
resulting string uses only lowercase letters, based on the current resulting string uses only lowercase letters, based on the current
locale. In addition, for Windows paths when the path does not start locale. In addition, for Windows paths when the path does not start
@litchar{\\?\}, all @litchar{/}s are converted to with @litchar{\\?\}, all @litchar{/}s are converted to
@litchar{\}s, and trailing spaces and @litchar{.}s are removed. @litchar{\}s, and trailing spaces and @litchar{.}s are removed.
The @racket[path] argument can be a path for any platform, but beware The @racket[path] argument can be a path for any platform, but beware