Assorted spelling fixes.
diff --git a/programs/cmd/batch.c b/programs/cmd/batch.c
index 21e806a..3748f21 100644
--- a/programs/cmd/batch.c
+++ b/programs/cmd/batch.c
@@ -187,7 +187,7 @@
param[0] = '\0';
i++;
} else {
- s++; /* Skip delimter */
+ s++; /* Skip delimiter */
}
p = param;
}
diff --git a/programs/cmd/builtins.c b/programs/cmd/builtins.c
index 17b385d..564ce45 100644
--- a/programs/cmd/builtins.c
+++ b/programs/cmd/builtins.c
@@ -243,7 +243,7 @@
*
* Create a directory.
*
- * this works recursivly. so mkdir dir1\dir2\dir3 will create dir1 and dir2 if
+ * this works recursively. so mkdir dir1\dir2\dir3 will create dir1 and dir2 if
* they do not already exist.
*/
@@ -452,7 +452,7 @@
}
/* Now check result, keeping a running boolean about whether it
- matches all parsed attribues so far */
+ matches all parsed attributes so far */
if (attribute && !negate) {
stillOK = stillOK;
} else if (!attribute && negate) {
@@ -1823,7 +1823,7 @@
}
*pos = 0x00;
- /* Search for approprate directory */
+ /* Search for appropriate directory */
WINE_TRACE("Looking for directory '%s'\n", wine_dbgstr_w(string));
hff = FindFirstFile (string, &fd);
while (hff != INVALID_HANDLE_VALUE) {
@@ -2277,7 +2277,7 @@
/* Wine implements pipes via temporary files, and hence stdin is
effectively reading from the file. This means the prompts for
- more are satistied by the next line from the input (file). To
+ more are satisfied by the next line from the input (file). To
avoid this, ensure stdin is to the console */
HANDLE hstdin = GetStdHandle(STD_INPUT_HANDLE);
HANDLE hConIn = CreateFile(conInW, GENERIC_READ | GENERIC_WRITE,
diff --git a/programs/cmd/directory.c b/programs/cmd/directory.c
index 483e496..10d0e67 100644
--- a/programs/cmd/directory.c
+++ b/programs/cmd/directory.c
@@ -925,7 +925,7 @@
/* In case of error, return empty string */
*owner = 0x00;
- /* Find out how much space we need for the owner security descritpor */
+ /* Find out how much space we need for the owner security descriptor */
GetFileSecurity(filename, OWNER_SECURITY_INFORMATION, 0, 0, &sizeNeeded);
rc = GetLastError();