aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2020-11-25 16:05:01 +0200
committerBozhidar Batsov <bozhidar@batsov.com>2020-11-25 16:05:01 +0200
commitc90e6ddaa9845bf089989aad9fe3d62d6904e348 (patch)
treeab971a425d9dd03abda86d996ea3c3b9c4de49b7
parent1aa1b0bfa5aafa7eb061b18dc56c9c57fdac4ea2 (diff)
Fix a docstring
-rw-r--r--projectile.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/projectile.el b/projectile.el
index cc10322..8037e78 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))