diff --git a/README b/README index 0671f6e..bc8e17c 100644 --- a/README +++ b/README @@ -29,7 +29,7 @@ XCOPY source [destination] [/switches] /T Creates directory tree without copying files. Empty directories will not be copied. To copy them add switch /E. /V Verifies each new file. - /W Waits for a keypress before beginning. + /W Waits for a key press before beginning. /Y Suppresses prompting to confirm you want to overwrite an existing destination file and overwrites these files. /-Y Causes prompting to confirm you want to overwrite an existing diff --git a/doc/xcopy.txt b/doc/xcopy.txt index 3fdece2..077058b 100644 --- a/doc/xcopy.txt +++ b/doc/xcopy.txt @@ -29,7 +29,7 @@ XCOPY source [destination] [/switches] /T Creates directory tree without copying files. Empty directories will not be copied. To copy them add switch /E. /V Verifies each new file. - /W Waits for a keypress before beginning. + /W Waits for a key press before beginning. /Y Suppresses prompting to confirm you want to overwrite an existing destination file and overwrites these files. /-Y Causes prompting to confirm you want to overwrite an existing diff --git a/help/xcopy.htm b/help/xcopy.htm index f46371a..969550a 100644 --- a/help/xcopy.htm +++ b/help/xcopy.htm @@ -70,7 +70,7 @@

Options

Verifies each new file. /W - Waits for a keypress before beginning. + Waits for a key press before beginning. /Y Suppresses prompting to confirm you want to overwrite an @@ -114,4 +114,4 @@

See Also

See the file H2Cpying.txt for copying conditions. - \ No newline at end of file + diff --git a/nls/xcopy.en b/nls/xcopy.en index afa9b4a..31b3a3e 100644 --- a/nls/xcopy.en +++ b/nls/xcopy.en @@ -48,7 +48,7 @@ 2.25: /T Creates directory tree without copying files. Empty directories 2.26: will not be copied. To copy them add switch /E. 2.27: /V Verifies each new file. -2.28: /W Waits for a keypress before beginning. +2.28: /W Waits for a key press before beginning. 2.29: /Y Suppresses prompting to confirm you want to overwrite an 2.30: existing destination file and overwrites these files. 2.31: /-Y Causes prompting to confirm you want to overwrite an existing diff --git a/source/xcopy.c b/source/xcopy.c index fed1a4b..0b5410a 100644 --- a/source/xcopy.c +++ b/source/xcopy.c @@ -438,7 +438,7 @@ void print_help(void) { printf("%s\n", catgets(cat, 2, 25, " /T Creates directory tree without copying files. Empty directories")); printf("%s\n", catgets(cat, 2, 26, " will not be copied. To copy them add switch /E.")); printf("%s\n", catgets(cat, 2, 27, " /V Verifies each new file.")); - printf("%s\n", catgets(cat, 2, 28, " /W Waits for a keypress before beginning.")); + printf("%s\n", catgets(cat, 2, 28, " /W Waits for a key press before beginning.")); printf("%s\n", catgets(cat, 2, 29, " /Y Suppresses prompting to confirm you want to overwrite an")); printf("%s\n", catgets(cat, 2, 30, " existing destination file and overwrites these files.")); printf("%s\n", catgets(cat, 2, 31, " /-Y Causes prompting to confirm you want to overwrite an existing"));