Assorted spelling fixes.
diff --git a/programs/cmd/batch.c b/programs/cmd/batch.c index cb09d47..4624ea9 100644 --- a/programs/cmd/batch.c +++ b/programs/cmd/batch.c
@@ -495,7 +495,7 @@ /* 4. Handle 'z' : File length */ if (exists && memchr(firstModifier, 'z', modifierLen) != NULL) { - /* FIXME: Output full 64 bit size (sprintf not support I64 here) */ + /* FIXME: Output full 64 bit size (sprintf does not support I64 here) */ ULONG/*64*/ fullsize = /*(fileInfo.nFileSizeHigh << 32) +*/ fileInfo.nFileSizeLow; @@ -505,14 +505,14 @@ strcat(finaloutput, thisoutput); } - /* 4. Handle 's' : Use short paths (File doesnt have to exist) */ + /* 4. Handle 's' : Use short paths (File doesn't have to exist) */ if (memchr(firstModifier, 's', modifierLen) != NULL) { if (finaloutput[0] != 0x00) strcat(finaloutput, " "); - /* Dont flag as doneModifier - %~s on its own is processed later */ + /* Don't flag as doneModifier - %~s on its own is processed later */ GetShortPathName(outputparam, outputparam, sizeof(outputparam)); } - /* 5. Handle 'f' : Fully qualified path (File doesnt have to exist) */ + /* 5. Handle 'f' : Fully qualified path (File doesn't have to exist) */ /* Note this overrides d,p,n,x */ if (memchr(firstModifier, 'f', modifierLen) != NULL) { doneModifier = TRUE;
diff --git a/programs/cmd/builtins.c b/programs/cmd/builtins.c index 6f451f8..85f7980 100644 --- a/programs/cmd/builtins.c +++ b/programs/cmd/builtins.c
@@ -1504,7 +1504,7 @@ return; } - /* If no paramaters then list all associations */ + /* If no parameters then list all associations */ if (*command == 0x00) { int index = 0;