changeset 49040:3abf799b7b29

dirstate: fix some typos in docstrings I was passing by and they've been bothering me. :) Differential Revision: https://phab.mercurial-scm.org/D12443
author Raphaël Gomès <rgomes@octobus.net>
date Wed, 23 Mar 2022 15:15:17 +0100
parents 0940a45cc838
children 8309c83b6e2c
files mercurial/dirstatemap.py
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/dirstatemap.py	Mon Apr 04 13:36:37 2022 +0000
+++ b/mercurial/dirstatemap.py	Wed Mar 23 15:15:17 2022 +0100
@@ -85,16 +85,16 @@
     # 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.
         """