diff --git a/dlls/shell32/tests/shlexec.c b/dlls/shell32/tests/shlexec.c index 6fdde5c5860..f34e569ecd1 100644 --- a/dlls/shell32/tests/shlexec.c +++ b/dlls/shell32/tests/shlexec.c @@ -996,7 +996,7 @@ static void test_lpFile_parsed(void) rc > 32 ? "success" : "failure", rc, fileA ); - /* quoted lpFile not works only on real win95 and nt4 */ + /* quoted lpFile does not work on real win95 and nt4 */ testfile = "\"%%TEMP%%\\%s\\simple.shlexec\""; sprintf(fileA, testfile, shorttmpdir); rc=shell_execute_ex(SEE_MASK_DOENVSUBST | SEE_MASK_FLAG_NO_UI, NULL, fileA, NULL, NULL); diff --git a/dlls/wininet/urlcache.c b/dlls/wininet/urlcache.c index 13633ac2be8..249ac46ade1 100644 --- a/dlls/wininet/urlcache.c +++ b/dlls/wininet/urlcache.c @@ -2351,7 +2351,7 @@ static void handle_full_cache(void) } } -/* Enumerates entires in cache, allows cache unlocking between calls. */ +/* Enumerates entries in cache, allows cache unlocking between calls. */ static BOOL urlcache_next_entry(URLCACHE_HEADER *header, DWORD *hash_table_off, DWORD *hash_table_entry, struct _HASH_ENTRY **hash_entry, CACHEFILE_ENTRY **entry) { @@ -2456,7 +2456,7 @@ static int dword_cmp(const void *p1, const void *p2) * * PARAMETERS * cache_path [I] Which volume to free up from, or NULL if you don't care. - * size [I] How much percent of cache space should be free. + * size [I] How many percents of the cache should be free. * filter [I] Which entries can't be deleted (CacheEntryType) * * RETURNS diff --git a/programs/cmd/wcmdmain.c b/programs/cmd/wcmdmain.c index 82ec153617d..64dd21deed8 100644 --- a/programs/cmd/wcmdmain.c +++ b/programs/cmd/wcmdmain.c @@ -1820,7 +1820,7 @@ WCHAR *WCMD_ReadAndParseLine(const WCHAR *optionalcmd, CMD_LIST **output, HANDLE /* Replace env vars if in a batch context */ if (context) handleExpansion(extraSpace, FALSE, NULL, NULL); - /* Skip preceeding whitespace */ + /* Skip preceding whitespace */ while (*curPos == ' ' || *curPos == '\t') curPos++; /* Show prompt before batch line IF echo is on and in batch program */