nodemap: fix a typo in error message
authorPulkit Goyal <7895pulkit@gmail.com>
Sun, 31 Jan 2021 23:40:57 +0530
changeset 46531 dadb4db55661
parent 46530 835aafb2543f
child 46532 bfaacfa8ebfc
nodemap: fix a typo in error message Differential Revision: https://phab.mercurial-scm.org/D9934
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")