# HG changeset patch # User Pulkit Goyal <7895pulkit@gmail.com> # Date 1612116657 -19800 # Node ID dadb4db55661192aa3ee0f51bd3cdd24b80d4b15 # Parent 835aafb2543f8354382e95b931d532595e96017f nodemap: fix a typo in error message Differential Revision: https://phab.mercurial-scm.org/D9934 diff -r 835aafb2543f -r dadb4db55661 mercurial/revlogutils/nodemap.py --- a/mercurial/revlogutils/nodemap.py Sun Jan 31 23:38:31 2021 +0530 +++ b/mercurial/revlogutils/nodemap.py Sun Jan 31 23:40:57 2021 +0530 @@ -135,7 +135,7 @@ "cannot persist nodemap of a filtered changelog" ) if revlog.nodemap_file is None: - msg = "calling persist nodemap on a revlog without the feature enableb" + msg = "calling persist nodemap on a revlog without the feature enabled" raise error.ProgrammingError(msg) can_incremental = util.safehasattr(revlog.index, "nodemap_data_incremental")