changeset 52544:700086cf336d

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.
author Matt Harbison <matt_harbison@yahoo.com>
date Mon, 16 Dec 2024 01:52:32 -0500
parents 20690cff1bd8
children 5a924cb07768
files mercurial/commands.py
diffstat 1 files changed, 8 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/commands.py	Thu Dec 12 15:17:44 2024 +0000
+++ b/mercurial/commands.py	Mon Dec 16 01:52:32 2024 -0500
@@ -2975,7 +2975,7 @@
             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 @@
 
     .. 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