aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2008-08-10 22:26:23 +0700
committerJunio C Hamano <gitster@pobox.com>2008-08-11 16:44:54 -0700
commit2860b57a87ba7e544d472701c83019d7624e6a2c (patch)
tree034399ed8a8d9498f266f6968dcc8897ccefcbcb
parentac39efbdf3d41443c40166b7578b7fb87c2f3b60 (diff)
downloadgit-2860b57a87ba7e544d472701c83019d7624e6a2c.tar.gz
git-2860b57a87ba7e544d472701c83019d7624e6a2c.tar.xz
Fix typo in comments of longest_ancestor_length()
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--path.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/path.c b/path.c
index 9df447bd6..76e887262 100644
--- a/path.c
+++ b/path.c
@@ -365,7 +365,7 @@ int normalize_absolute_path(char *buf, const char *path)
* path = Canonical absolute path
* prefix_list = Colon-separated list of absolute paths
*
- * Determines, for each path in parent_list, whether the "prefix" really
+ * Determines, for each path in prefix_list, whether the "prefix" really
* is an ancestor directory of path. Returns the length of the longest
* ancestor directory, excluding any trailing slashes, or -1 if no prefix
* is an ancestor. (Note that this means 0 is returned if prefix_list is