From: Russell Belfer Date: Wed, 24 Jul 2013 20:44:35 +0000 (-0700) Subject: Fix incorrect comment X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=f5c4d0225157a6e15fc08f07aa77b5e8f52cdac5;p=libgit2.git Fix incorrect comment --- 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) ||