From c90e6ddaa9845bf089989aad9fe3d62d6904e348 Mon Sep 17 00:00:00 2001 From: Bozhidar Batsov Date: Wed, 25 Nov 2020 16:05:01 +0200 Subject: [PATCH] Fix a docstring --- projectile.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projectile.el b/projectile.el index cc103220e..8037e78f7 100644 --- a/projectile.el +++ b/projectile.el @@ -3075,7 +3075,7 @@ Fallback to DEFAULT-VALUE for missing attributes." (projectile-project-type-attribute project-type 'test-dir "test/")) (defun projectile-dirname-matching-count (a b) - "Count matching dirnames ascending file paths." + "Count matching dirnames ascending file paths in A and B." (setq a (reverse (split-string (or (file-name-directory a) "") "/" t)) b (reverse (split-string (or (file-name-directory b) "") "/" t))) (let ((common 0))