Mercurial > public > mercurial-scm > hg-stable
diff mercurial/cmd_impls/graft.py @ 52379:0facc743b92f
graft: fix a few typos in doc comments
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Fri, 29 Nov 2024 19:24:07 -0500 |
parents | 1802d9afddf7 |
children | 99615755fb8e |
line wrap: on
line diff
--- 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(