# HG changeset patch # User Pierre-Yves David # Date 2021-05-28 21:41:12 # Node ID bcf92bdc2bcac289c93d9f956919fc82867eefc2 # Parent 75e1104f23a2c455359b7aec5cb6636c32c94e96 revlog: fix docket.date_filepath docstring This was copy-pasted too quickly. Differential Revision: https://phab.mercurial-scm.org/D10786 diff --git a/mercurial/revlogutils/docket.py b/mercurial/revlogutils/docket.py --- a/mercurial/revlogutils/docket.py +++ b/mercurial/revlogutils/docket.py @@ -145,7 +145,7 @@ class RevlogDocket(object): return b"%s-%s.idx" % (self._radix, self._index_uuid) def data_filepath(self): - """file path to the current index file associated to this docket""" + """file path to the current data file associated to this docket""" # very simplistic version at first if self._data_uuid is None: self._data_uuid = make_uid()