# HG changeset patch # User Matt Harbison # Date 2024-12-16 06:52:32 # Node ID 700086cf336d4b03cadc86024de15211fde750d6 # Parent 20690cff1bd8865d97c3fd19681284e35d9db287 graft: minor copyediting of the help text for the `--to` argument It looks like `rebase` makes frequent use of `in-memory` (with the dash), so do that here too. diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -2975,7 +2975,7 @@ def forget(ui, repo, *pats, **opts): b'', b'to', b'', - _(b'graft to this destination, in memory (EXPERIMENTAL)'), + _(b'graft to this destination, in-memory (EXPERIMENTAL)'), ), (b'c', b'continue', False, _(b'resume interrupted graft')), (b'', b'stop', False, _(b'stop interrupted graft')), @@ -3067,13 +3067,13 @@ def graft(ui, repo, *revs, **opts): .. container:: verbose - The experimental --to option allow to graft a revision in memory, - independently from the working copy. Merge conflict are not currenly - supported and the operation will be aborted if the configured tool - cannot handle the conflict that might be encountered. - - As the operation is performence in memory, the on disk file will not be - modified and some hooks might not be run. + The experimental --to option allows grafting a revision in-memory, + independent of the working copy. Merge conflicts are not currently + supported, and the operation will be aborted if the configured tool + cannot handle the conflicts that might be encountered. + + As the operation is performed in-memory, the on-disk files will not be + modified, and some hooks might not be run. .. container:: verbose