diff mercurial/commands.py @ 3174:3637d5d17cbc

Documentation fixes for addremove. - It is no longer deprecated, but the short help still included (DEPRECATED). - Similarity parameter has to be 0<=s<=100 and not 0<=s<=1.
author Thomas Arendsen Hein <thomas@intevation.de>
date Wed, 27 Sep 2006 21:43:45 +0200
parents 5c93dd0ae413
children fca5ddbaa12a
line wrap: on
line diff
--- a/mercurial/commands.py
+++ b/mercurial/commands.py
@@ -574,7 +574,7 @@ def add(ui, repo, *pats, **opts):
         repo.add(names)
 
 def addremove(ui, repo, *pats, **opts):
-    """add all new files, delete all missing files (DEPRECATED)
+    """add all new files, delete all missing files
 
     Add all new files and remove all missing files from the repository.
 
@@ -2667,7 +2667,7 @@ table = {
           ('n', 'dry-run', None,
            _('do not perform actions, just print output')),
           ('s', 'similarity', '',
-           _('guess renamed files by similarity (0<=s<=1)'))],
+           _('guess renamed files by similarity (0<=s<=100)'))],
          _('hg addremove [OPTION]... [FILE]...')),
     "^annotate":
         (annotate,