Commit f5c4d0225157a6e15fc08f07aa77b5e8f52cdac5

Russell Belfer 2013-07-24T13:44:35

Fix incorrect comment

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/diff_tform.c b/src/diff_tform.c
index ab43a3a..cabcd1f 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) ||