Mercurial > hg
changeset 9080:5d6c42f33b71
commands: avoid bad linebreak in addremove docstring
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Wed, 08 Jul 2009 00:30:21 +0200 |
parents | 70c707310d7a |
children | d8e8447a4b7b |
files | mercurial/commands.py |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/commands.py Tue Jul 07 23:54:42 2009 +0200 +++ b/mercurial/commands.py Wed Jul 08 00:30:21 2009 +0200 @@ -53,11 +53,11 @@ New files are ignored if they match any of the patterns in .hgignore. As with add, these changes take effect at the next commit. - Use the -s/--similarity option to detect renamed files. With a parameter > - 0, this compares every removed file with every added file and records - those similar enough as renames. This option takes a percentage between 0 - (disabled) and 100 (files must be identical) as its parameter. Detecting - renamed files this way can be expensive. + Use the -s/--similarity option to detect renamed files. With a parameter + greater than 0, this compares every removed file with every added file and + records those similar enough as renames. This option takes a percentage + between 0 (disabled) and 100 (files must be identical) as its parameter. + Detecting renamed files this way can be expensive. """ try: sim = float(opts.get('similarity') or 0)