# HG changeset patch # User Joerg Sonnenberger # Date 1610025324 -3600 # Node ID d6a9e690d620349d43356ae2b782440e05028c8a # Parent 4d1cec4e5e1fe4e4d9379954fbedd5c8d302aa99 comments: fix typos Differential Revision: https://phab.mercurial-scm.org/D9689 diff -r 4d1cec4e5e1f -r d6a9e690d620 mercurial/repoview.py --- a/mercurial/repoview.py Mon Dec 14 14:38:01 2020 +0530 +++ b/mercurial/repoview.py Thu Jan 07 14:15:24 2021 +0100 @@ -159,7 +159,7 @@ This filter out any mutable changeset and any public changeset that may be impacted by something happening to a mutable revision. - This is achieved by filtered everything with a revision number egal or + This is achieved by filtered everything with a revision number equal or higher than the first mutable changeset is filtered.""" assert not repo.changelog.filteredrevs cl = repo.changelog diff -r 4d1cec4e5e1f -r d6a9e690d620 mercurial/revlogutils/sidedata.py --- a/mercurial/revlogutils/sidedata.py Mon Dec 14 14:38:01 2020 +0530 +++ b/mercurial/revlogutils/sidedata.py Thu Jan 07 14:15:24 2021 +0100 @@ -13,8 +13,8 @@ The current implementation is experimental and subject to changes. Do not rely on it in production. -Sidedata are stored in the revlog itself, withing the revision rawtext. They -are inserted, removed from it using the flagprocessors mechanism. The following +Sidedata are stored in the revlog itself, within the revision rawtext. They +are inserted and removed from it using the flagprocessors mechanism. The following format is currently used:: initial header: @@ -27,7 +27,7 @@ normal raw text: -This is a simple and effective format. It should be enought to experiment with +This is a simple and effective format. It should be enough to experiment with the concept. """