diff mercurial/commands.py @ 924:ab681ea2857e

updated help text and added manpage section for hg paths Index: hg/doc/hg.1.txt ===================================================================
author TK Soh <teekaysoh@yahoo.com>
date Tue, 16 Aug 2005 17:30:41 -0800
parents 1a51fa1b3513
children 5a830d7bea52
line wrap: on
line diff
--- a/mercurial/commands.py	Tue Aug 16 17:12:25 2005 -0800
+++ b/mercurial/commands.py	Tue Aug 16 17:30:41 2005 -0800
@@ -876,7 +876,7 @@
             show_changeset(ui, repo, changenode=n)
 
 def paths(ui, search = None):
-    """show path or list of available paths"""
+    """show definition of symbolic path names"""
     try:
         repo = hg.repository(ui=ui)
     except:
@@ -1320,7 +1320,7 @@
     "manifest": (manifest, [], 'hg manifest [REV]'),
     "outgoing": (outgoing, [], 'hg outgoing [DEST]'),
     "parents": (parents, [], 'hg parents [REV]'),
-    "paths": (paths, [], 'hg paths [name]'),
+    "paths": (paths, [], 'hg paths [NAME]'),
     "^pull":
         (pull,
          [('u', 'update', None, 'update working directory')],