changeset 17291:2d6bbf87f7b4 stable

revset: minor doc fixes on obsolete related revsets
author Patrick Mezard <patrick@mezard.eu>
date Mon, 30 Jul 2012 15:48:04 +0200
parents 7a9246abf9fe
children 8da6fe276a23
files mercurial/revset.py
diffstat 1 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/revset.py	Mon Jul 30 11:33:27 2012 +0200
+++ b/mercurial/revset.py	Mon Jul 30 15:48:04 2012 +0200
@@ -617,7 +617,8 @@
 
 def extinct(repo, subset, x):
     """``extinct()``
-    obsolete changeset with obsolete descendant only."""
+    Obsolete changesets with obsolete descendants only.
+    """
     # i18n: "extinct" is a keyword
     getargs(x, 0, 0, _("extinct takes no arguments"))
     extinctset = set(repo.revs('(obsolete()::) - (::(not obsolete()))'))
@@ -1424,7 +1425,8 @@
 
 def unstable(repo, subset, x):
     """``unstable()``
-    Unstable changesets are non-obsolete with obsolete ancestors."""
+    Non-obsolete changesets with obsolete ancestors.
+    """
     # i18n: "unstable" is a keyword
     getargs(x, 0, 0, _("unstable takes no arguments"))
     unstableset = set(repo.revs('(obsolete()::) - obsolete()'))