summaryrefslogtreecommitdiff
path: root/src/diff_tform.c
diff options
context:
space:
mode:
authorRussell Belfer <rb@github.com>2013-07-24 13:44:35 -0700
committerRussell Belfer <rb@github.com>2013-07-24 13:44:35 -0700
commitf5c4d0225157a6e15fc08f07aa77b5e8f52cdac5 (patch)
tree1b355e39e2ddd67341eae8090ef09b4fb724ae10 /src/diff_tform.c
parent397357a0480b341fce5e93d3f485504f2ae94082 (diff)
downloadlibgit2-f5c4d0225157a6e15fc08f07aa77b5e8f52cdac5.tar.gz
Fix incorrect comment
Diffstat (limited to 'src/diff_tform.c')
-rw-r--r--src/diff_tform.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/diff_tform.c b/src/diff_tform.c
index ab43a3a14..cabcd1f80 100644
--- a/src/diff_tform.c
+++ b/src/diff_tform.c
@@ -512,7 +512,7 @@ static int similarity_measure(
return 0;
}
- /* check if file sizes too small or nowhere near each other */
+ /* check if file sizes are nowhere near each other */
if (a_file->size > 127 &&
b_file->size > 127 &&
(a_file->size > (b_file->size << 4) ||