From 8882e6519d9b6c6130dc1a1a332d9b0471afa9ef Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Wed, 25 Apr 2007 06:08:57 +0000 Subject: [PATCH] fix a comment svn: r6039 --- src/mzscheme/src/file.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mzscheme/src/file.c b/src/mzscheme/src/file.c index ae5cd70bb0..bac90d0517 100644 --- a/src/mzscheme/src/file.c +++ b/src/mzscheme/src/file.c @@ -2044,8 +2044,8 @@ static int UNC_stat(char *dirname, int len, int *flags, int *isdir, Scheme_Objec { /* Note: stat() doesn't work with UNC "drive" names or \\?\ paths. Also, stat() doesn't distinguish between the ability to - list a directory's content and the fact to detect that the - directory exists. So, we use GetFileAttributesExW(). */ + list a directory's content and whether the directory exists. + So, we use GetFileAttributesExW(). */ char *copy; WIN32_FILE_ATTRIBUTE_DATA fd; int must_be_dir = 0;