--- a/hgext/children.py Wed Jun 24 13:10:05 2009 +0200
+++ b/hgext/children.py Wed Jun 24 13:42:02 2009 +0200
@@ -8,7 +8,7 @@
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2, incorporated herein by reference.
-'''display children changesets'''
+'''command to display child changesets'''
from mercurial import cmdutil
from mercurial.commands import templateopts
--- a/hgext/churn.py Wed Jun 24 13:10:05 2009 +0200
+++ b/hgext/churn.py Wed Jun 24 13:42:02 2009 +0200
@@ -6,7 +6,7 @@
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2, incorporated herein by reference.
-'''display statistics about repository history'''
+'''command to display statistics about repository history'''
from mercurial.i18n import _
from mercurial import patch, cmdutil, util, templater
--- a/hgext/extdiff.py Wed Jun 24 13:10:05 2009 +0200
+++ b/hgext/extdiff.py Wed Jun 24 13:42:02 2009 +0200
@@ -5,7 +5,7 @@
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2, incorporated herein by reference.
-'''allow external programs to compare revisions
+'''command to allow external programs to compare revisions
The `extdiff' Mercurial extension allows you to use external programs
to compare revisions, or revision with working directory. The external diff
--- a/hgext/gpg.py Wed Jun 24 13:10:05 2009 +0200
+++ b/hgext/gpg.py Wed Jun 24 13:42:02 2009 +0200
@@ -3,7 +3,7 @@
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2, incorporated herein by reference.
-'''sign and verify changesets'''
+'''commands to sign and verify changesets'''
import os, tempfile, binascii
from mercurial import util, commands, match
--- a/hgext/graphlog.py Wed Jun 24 13:10:05 2009 +0200
+++ b/hgext/graphlog.py Wed Jun 24 13:42:02 2009 +0200
@@ -5,7 +5,7 @@
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2, incorporated herein by reference.
-'''view revision graphs from a shell
+'''command to view revision graphs from a shell
This extension adds a --graph option to the incoming, outgoing and log
commands. When this options is given, an ASCII representation of the
--- a/hgext/patchbomb.py Wed Jun 24 13:10:05 2009 +0200
+++ b/hgext/patchbomb.py Wed Jun 24 13:42:02 2009 +0200
@@ -5,7 +5,7 @@
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2, incorporated herein by reference.
-'''send Mercurial changesets as a series of patch e-mails
+'''command to send changesets as (a series of) patch e-mails
The series is started off with a "[PATCH 0 of N]" introduction, which
describes the series as a whole.
--- a/hgext/purge.py Wed Jun 24 13:10:05 2009 +0200
+++ b/hgext/purge.py Wed Jun 24 13:42:02 2009 +0200
@@ -23,7 +23,7 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-'''delete files not tracked from the working directory'''
+'''command to delete untracked files from the working directory'''
from mercurial import util, commands, cmdutil
from mercurial.i18n import _
--- a/hgext/rebase.py Wed Jun 24 13:10:05 2009 +0200
+++ b/hgext/rebase.py Wed Jun 24 13:42:02 2009 +0200
@@ -5,7 +5,7 @@
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2, incorporated herein by reference.
-'''move sets of revisions to a different ancestor
+'''command to move sets of revisions to a different ancestor
This extension lets you rebase changesets in an existing Mercurial
repository.
--- a/hgext/record.py Wed Jun 24 13:10:05 2009 +0200
+++ b/hgext/record.py Wed Jun 24 13:42:02 2009 +0200
@@ -5,7 +5,7 @@
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2, incorporated herein by reference.
-'''interactively select which sets of changes to commit/qrefresh'''
+'''commands to interactively select changes for commit/qrefresh'''
from mercurial.i18n import gettext, _
from mercurial import cmdutil, commands, extensions, hg, mdiff, patch
--- a/hgext/transplant.py Wed Jun 24 13:10:05 2009 +0200
+++ b/hgext/transplant.py Wed Jun 24 13:42:02 2009 +0200
@@ -5,7 +5,7 @@
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2, incorporated herein by reference.
-'''transplant changesets from another branch
+'''command to transplant changesets from another branch
This extension allows you to transplant patches from another branch.