--- a/mercurial/cmd_impls/graft.py Fri Nov 29 19:22:51 2024 -0500
+++ b/mercurial/cmd_impls/graft.py Fri Nov 29 19:24:07 2024 -0500
@@ -6,7 +6,7 @@
def cmd_graft(ui, repo, *revs, **opts):
- """implement the graft command as defined in mercuria/commands.py"""
+ """implement the graft command as defined in mercurial/commands.py"""
ret = _process_args(ui, repo, *revs, **opts)
action, graftstate, args = ret
if action == "ERROR":
@@ -27,7 +27,7 @@
"""process the graft command argument to figure out what to do
This also filter the selected revision to skip the one that cannot be graft
- or were alredy grafted.
+ or were already grafted.
"""
if revs and opts.get('rev'):
ui.warn(