diff -r 1f8f215219ff -r e96ed3a61899 mercurial/commands.py --- a/mercurial/commands.py Tue Jan 21 10:27:39 2020 -0800 +++ b/mercurial/commands.py Wed Jan 22 14:11:11 2020 -0500 @@ -5671,7 +5671,7 @@ @command( b'recover', - [(b'', b'verify', True, b"run `hg verify` after succesful recover"),], + [(b'', b'verify', True, b"run `hg verify` after successful recover"),], helpcategory=command.CATEGORY_MAINTENANCE, ) def recover(ui, repo, **opts): @@ -5691,7 +5691,7 @@ return hg.verify(repo) else: msg = _( - b"(verify step skipped, run `hg verify` to check your " + b"(verify step skipped, run `hg verify` to check your " b"repository content)\n" ) ui.warn(msg)