diff __init__.py @ 143:edd9f4e5154a

Phrasing nits.
author Augie Fackler <durin42@gmail.com>
date Mon, 15 Dec 2008 21:36:14 -0600
parents 42958d9de864
children 3cd6a7354207
line wrap: on
line diff
--- a/__init__.py
+++ b/__init__.py
@@ -24,7 +24,8 @@ def svn_fetch(ui, svn_url, hg_repo_path=
     If no destination directory name is specified, it defaults to the
     basename of the source plus "-hg".
 
-    You can specify few paths for storing tags using comma separated values.
+    You can specify multiple paths for the location of tags using comma
+    separated values.
     '''
     if not hg_repo_path:
         hg_repo_path = hg.defaultdest(svn_url) + "-hg"
@@ -50,7 +51,7 @@ cmdtable = {
         (svn_fetch,
          [('S', 'skipto-rev', '0', 'Skip commits before this revision.'),
           ('', 'stupid', False, 'Be stupid and use diffy replay.'),
-          ('T', 'tag-locations', 'tags', 'Relative path to where tags get stored.')
+          ('T', 'tag-locations', 'tags', 'Relative path to Subversion tags.')
          ],
          'hg svnclone source [dest]'),
 }