diff hgext/histedit.py @ 46104:6f8a94bbfba1

histedit: adjust comment describing `edit` action for clarity Differential Revision: https://phab.mercurial-scm.org/D9561
author Augie Fackler <augie@google.com>
date Thu, 10 Dec 2020 13:15:15 -0500
parents 3f82a915ab2a
children 59fa3890d40a
line wrap: on
line diff
--- a/hgext/histedit.py	Thu Dec 10 11:42:49 2020 -0500
+++ b/hgext/histedit.py	Thu Dec 10 13:15:15 2020 -0500
@@ -34,7 +34,7 @@
  #
  # Commands:
  #  p, pick = use commit
- #  e, edit = use commit, but stop for amending
+ #  e, edit = use commit, but allow edits before making new commit
  #  f, fold = use commit, but combine it with the one above
  #  r, roll = like fold, but discard this commit's description and date
  #  d, drop = remove commit from history
@@ -57,7 +57,7 @@
  #
  # Commands:
  #  p, pick = use commit
- #  e, edit = use commit, but stop for amending
+ #  e, edit = use commit, but allow edits before making new commit
  #  f, fold = use commit, but combine it with the one above
  #  r, roll = like fold, but discard this commit's description and date
  #  d, drop = remove commit from history
@@ -792,7 +792,7 @@
         return super(pick, self).run()
 
 
-@action([b'edit', b'e'], _(b'use commit, but stop for amending'), priority=True)
+@action([b'edit', b'e'], _(b'use commit, but allow edits before making new commit'), priority=True)
 class edit(histeditaction):
     def run(self):
         repo = self.repo