From: Wayne Davison Date: Tue, 15 Nov 2005 07:05:55 +0000 (+0000) Subject: Fixed a typo in the --help output for --no-OPTION. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/8938d67ef863ae9d39f37943127b9d16dfa3d5f1 Fixed a typo in the --help output for --no-OPTION. --- diff --git a/options.c b/options.c index df14a81b..cf82daa7 100644 --- a/options.c +++ b/options.c @@ -272,7 +272,7 @@ void usage(enum logcode F) rprintf(F," -q, --quiet suppress non-error messages\n"); rprintf(F," -c, --checksum skip based on checksum, not mod-time & size\n"); rprintf(F," -a, --archive archive mode; same as -rlptgoD (no -H)\n"); - rprintf(F," --no-OPTION turn of an implied OPTION (e.g. --no-D)\n"); + rprintf(F," --no-OPTION turn off an implied OPTION (e.g. --no-D)\n"); rprintf(F," -r, --recursive recurse into directories\n"); rprintf(F," -R, --relative use relative path names\n"); rprintf(F," --no-implied-dirs don't send implied dirs with --relative\n");