]> git.proxmox.com Git - libgit2.git/commitdiff
Fix incorrect comment
authorRussell Belfer <rb@github.com>
Wed, 24 Jul 2013 20:44:35 +0000 (13:44 -0700)
committerRussell Belfer <rb@github.com>
Wed, 24 Jul 2013 20:44:35 +0000 (13:44 -0700)
src/diff_tform.c

index ab43a3a1401eda258733b078db56da62a270d821..cabcd1f809809c50f2e1d88bb48f538bfa6d2515 100644 (file)
@@ -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) ||