Mercurial > public > mercurial-scm > hg
diff hgext/rebase.py @ 45510:1f5c548f15e5
rebase: fix an inconsistent hyphenation in a debug message
We used "rebasing on disk" but "rebasing in-memory". I believe the
former is correct, so I used that.
Differential Revision: https://phab.mercurial-scm.org/D9054
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Fri, 18 Sep 2020 10:04:02 -0700 |
parents | 0ea08126a2af |
children | e29cd888fd17 |
line wrap: on
line diff
--- a/hgext/rebase.py Tue Sep 15 15:03:07 2020 +0200 +++ b/hgext/rebase.py Fri Sep 18 10:04:02 2020 -0700 @@ -448,7 +448,7 @@ from mercurial.context import overlayworkingctx self.wctx = overlayworkingctx(self.repo) - self.repo.ui.debug(b"rebasing in-memory\n") + self.repo.ui.debug(b"rebasing in memory\n") else: self.wctx = self.repo[None] self.repo.ui.debug(b"rebasing on disk\n")