Assorted spelling fixes.
diff --git a/programs/cmd/batch.c b/programs/cmd/batch.c
index 15057b35..c9f6e76 100644
--- a/programs/cmd/batch.c
+++ b/programs/cmd/batch.c
@@ -423,7 +423,7 @@
memcpy(env, start, (end-start) * sizeof(WCHAR));
env[(end-start)] = 0x00;
- /* If env var not found, return emptry string */
+ /* If env var not found, return empty string */
if ((GetEnvironmentVariable(env, fullpath, MAX_PATH) == 0) ||
(SearchPath(fullpath, outputparam, NULL,
MAX_PATH, outputparam, NULL) == 0)) {
diff --git a/programs/cmd/wcmdmain.c b/programs/cmd/wcmdmain.c
index 32511cf..24efebf 100644
--- a/programs/cmd/wcmdmain.c
+++ b/programs/cmd/wcmdmain.c
@@ -919,7 +919,7 @@
* If any found, cycle through PATHEXT looking for name.exe one by one
* Launching
* Once a match has been found, it is launched - Code currently uses
- * findexecutable to acheive this which is left untouched.
+ * findexecutable to achieve this which is left untouched.
*/
void WCMD_run_program (WCHAR *command, int called) {