# HG changeset patch # User Raphaël Gomès # Date 2022-03-23 14:15:17 # Node ID 3abf799b7b290945fa30242295c22aacd1a57e08 # Parent 0940a45cc8389fb0453634597c7c0402694a29d6 dirstate: fix some typos in docstrings I was passing by and they've been bothering me. :) Differential Revision: https://phab.mercurial-scm.org/D12443 diff --git a/mercurial/dirstatemap.py b/mercurial/dirstatemap.py --- a/mercurial/dirstatemap.py +++ b/mercurial/dirstatemap.py @@ -85,16 +85,16 @@ class _dirstatemapcommon: # with minor difference between implementation. def _dirs_incr(self, filename, old_entry=None): - """incremente the dirstate counter if applicable + """increment the dirstate counter if applicable - This might be a no-op for some subclass who deal with directory + This might be a no-op for some subclasses who deal with directory tracking in a different way. """ def _dirs_decr(self, filename, old_entry=None, remove_variant=False): - """decremente the dirstate counter if applicable + """decrement the dirstate counter if applicable - This might be a no-op for some subclass who deal with directory + This might be a no-op for some subclasses who deal with directory tracking in a different way. """