[file_utils] unln: typos

This commit is contained in:
Matteo Cypriani 2014-06-01 21:46:29 -04:00
parent 718d4c5c95
commit 3148df9356
1 changed files with 2 additions and 2 deletions

View File

@ -78,7 +78,7 @@ def dereference(path):
# Parse command-line arguments
arg_parser = argparse.ArgumentParser(
description="Separate a file name from its other hard links",
description="Separates a file name from its other hard links",
epilog="For more information about this program, see the README file \
provided with the distribution.")
arg_parser.add_argument("-L", "--dereference", action="store_true",
@ -89,7 +89,7 @@ arg_parser.add_argument("-s", "--sync", action="store_true",
arg_parser.add_argument("-v", "--verbose", action="store_true",
help="increase output verbosity")
arg_parser.add_argument("filenames", metavar="file", nargs="+",
help="file name to work on")
help="file names to work on")
options = arg_parser.parse_args()