rebase: wrap docstrings at 70 characters
authorMartin Geisler <mg@lazybytes.net>
Sun, 26 Jul 2009 01:59:59 +0200
changeset 9271 4ea022359c43
parent 9270 00cc7fa0c0c6
child 9272 784899697571
rebase: wrap docstrings at 70 characters
hgext/rebase.py
--- a/hgext/rebase.py	Sun Jul 26 01:59:28 2009 +0200
+++ b/hgext/rebase.py	Sun Jul 26 01:59:59 2009 +0200
@@ -7,7 +7,8 @@
 
 '''command to move sets of revisions to a different ancestor
 
-This extension lets you rebase changesets in an existing Mercurial repository.
+This extension lets you rebase changesets in an existing Mercurial
+repository.
 
 For more information:
 http://mercurial.selenic.com/wiki/RebaseProject
@@ -41,9 +42,9 @@
 def rebase(ui, repo, **opts):
     """move changeset (and descendants) to a different branch
 
-    Rebase uses repeated merging to graft changesets from one part of history
-    onto another. This can be useful for linearizing local changes relative to
-    a master development tree.
+    Rebase uses repeated merging to graft changesets from one part of
+    history onto another. This can be useful for linearizing local
+    changes relative to a master development tree.
 
     If a rebase is interrupted to manually resolve a merge, it can be
     continued with --continue/-c or aborted with --abort/-a.